diff options
author | Jouke Witteveen <j.witteveen@gmail.com> | 2012-03-06 13:00:07 +0100 |
---|---|---|
committer | Jouke Witteveen <j.witteveen@gmail.com> | 2012-03-06 13:00:07 +0100 |
commit | 1a6cc347550cfde03be9f3155240b8d0e60e3e39 (patch) | |
tree | 47ba90815bc7d126b607634d4d36d7f45a06659e /Makefile | |
parent | 20f45928eaf72ed5413c0ac0c6e30bb771c03a5f (diff) | |
download | netctl-1a6cc347550cfde03be9f3155240b8d0e60e3e39.tar.gz netctl-1a6cc347550cfde03be9f3155240b8d0e60e3e39.tar.xz |
More forgiving Makefile and added PKGBUILD creation
- As noted by Alfredo Palhares it is not always right to fail when the creation of symlinks did not succeed on installation through `make install`.
- Building a package is now as easy as `make pkgbuild; makepkg`, although you probably should not execute makepkg inside the source tree.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 13 |
1 files changed, 8 insertions, 5 deletions
@@ -1,6 +1,6 @@ export VERSION = 2.7 -.PHONY: install install-wireless install-docs docs tarball upload clean +.PHONY: install install-wireless install-docs docs tarball pkgbuild upload clean install: install-docs # Configuration files @@ -12,14 +12,14 @@ install: install-docs install -d $(DESTDIR)/usr/lib/network/{connections,hooks} install -m644 src/{network,rfkill,8021x,globals} $(DESTDIR)/usr/lib/network/ install -m755 src/connections/* $(DESTDIR)/usr/lib/network/connections/ - ln -s wireless $(DESTDIR)/usr/lib/network/connections/wireless-dbus - ln -s ethernet $(DESTDIR)/usr/lib/network/connections/ethernet-iproute + -ln -s wireless $(DESTDIR)/usr/lib/network/connections/wireless-dbus + -ln -s ethernet $(DESTDIR)/usr/lib/network/connections/ethernet-iproute # Hooks install -m755 src/hooks/* ${DESTDIR}/usr/lib/network/hooks/ # Scripts install -d $(DESTDIR)/usr/bin install -m755 scripts/netcfg $(DESTDIR)/usr/bin/netcfg2 - ln -s netcfg2 $(DESTDIR)/usr/bin/netcfg + -ln -s netcfg2 $(DESTDIR)/usr/bin/netcfg install -m755 \ scripts/netcfg-menu \ scripts/netcfg-wpa_actiond \ @@ -69,6 +69,9 @@ netcfg-$(VERSION).tar.gz: tar -zcvf netcfg-$(VERSION).tar.gz netcfg-$(VERSION) rm -rf netcfg-$(VERSION) +pkgbuild: netcfg-$(VERSION).tar.gz + sed -e "s/%pkgver%/$(VERSION)/" -e "s/%md5sum%/$(shell md5sum netcfg-$(VERSION).tar.gz | cut -d ' ' -f 1)/" contrib/PKGBUILD > PKGBUILD + upload: netcfg-$(VERSION).tar.gz md5sum netcfg-$(VERSION).tar.gz > MD5SUMS.$(VERSION) scp netcfg-$(VERSION).tar.gz MD5SUMS.$(VERSION) archlinux.org:/srv/ftp/other/netcfg/ @@ -77,5 +80,5 @@ clean: $(MAKE) -C docs clean -@rm -vrf netcfg-$(VERSION) 2>/dev/null -@rm -vrf pkg 2>/dev/null - -@rm -vf *.gz MD5SUMS.* 2>/dev/null + -@rm -vf PKGBUILD *.gz MD5SUMS.* 2>/dev/null |