12 lines
402 B
Makefile
12 lines
402 B
Makefile
|
prepare:
|
||
|
git clone https://github.com/Sweets/hummingbird hummingbird
|
||
|
cd hummingbird
|
||
|
make:
|
||
|
make
|
||
|
install:
|
||
|
make install DESTDIR="${PREFIX}"
|
||
|
uninstall:
|
||
|
@echo "pkgmsg: hummingbird does not have a proper uninstall script"
|
||
|
# we would need to rm -rf ${PREFIX}/usr/lib/hummingbird
|
||
|
# and rm $(INSTALL) hummingbird "$(DESTDIR)/usr/bin/hummingbird" "$(DESTDIR)/usr/bin/shutdown" "$(DESTDIR)/usr/bin/reboot"
|