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 /contrib | |
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 'contrib')
-rw-r--r-- | contrib/PKGBUILD | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/contrib/PKGBUILD b/contrib/PKGBUILD new file mode 100644 index 0000000..ae06f12 --- /dev/null +++ b/contrib/PKGBUILD @@ -0,0 +1,32 @@ +# Maintainer: Jouke Witteveen <j.witteveen@gmail.com> + +pkgname=netcfg +pkgver=%pkgver% +pkgrel=1 +pkgdesc="Network configuration and profile scripts" +url="http://archlinux.org" +license=("BSD") +backup=(etc/iftab etc/conf.d/netcfg) +depends=("coreutils" "dhcpcd>=4.0" "iproute2") +makedepends=('asciidoc') +optdepends=('dialog: Required for menu based profile and wifi selectors' + 'bridge-utils: To set up bridge connections' + 'wpa_supplicant: required for wireless network support' + 'wpa_actiond: Required for automatic wireless connection with rc.d/net-auto-wireless' + 'ifplugd: Required for automatic wired connection with rc.d/net-auto-wired' + 'wireless_tools: Required for net-rename' + ) +source=(ftp://ftp.archlinux.org/other/netcfg/netcfg-${pkgver}.tar.gz) +arch=(any) +md5sums=('%md5sum%') + +package() { + cd "$srcdir/netcfg-${pkgver}" + make DESTDIR="$pkgdir" install + install -D -m644 LICENSE "$pkgdir/usr/share/licenses/netcfg/LICENSE" + + # Shell Completion + install -D -m644 contrib/bash-completion "$pkgdir/etc/bash_completion.d/netcfg" + install -D -m644 contrib/zsh-completion "$pkgdir/usr/share/zsh/site-functions/_netcfg" +} + |