diff options
-rw-r--r-- | .gitignore | 3 | ||||
-rw-r--r-- | contrib/PKGBUILD | 13 |
2 files changed, 10 insertions, 6 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..b4e76c3 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +*.tar.xz +*.tar.xz.sig +/PKGBUILD diff --git a/contrib/PKGBUILD b/contrib/PKGBUILD index 0126bf5..aabe144 100644 --- a/contrib/PKGBUILD +++ b/contrib/PKGBUILD @@ -3,10 +3,11 @@ pkgname=netctl pkgver=%pkgver% pkgrel=1 -pkgdesc="Profile based systemd network management" -url="http://projects.archlinux.org/netctl.git/" -license=("GPL") -depends=("coreutils" "iproute2" "openresolv") +pkgdesc='Profile based systemd network management' +url='http://projects.archlinux.org/netctl.git/' +license=('GPL') +groups=('base') +depends=('coreutils' 'iproute2' 'openresolv') #makedepends=('asciidoc') # The source tarball includes pre-built documentation. optdepends=('dialog: for the menu based wifi assistant' 'dhclient: for DHCP support (or dhcpcd)' @@ -18,9 +19,9 @@ optdepends=('dialog: for the menu based wifi assistant' 'bridge-utils: for bridge connections' 'ppp: for pppoe connections' ) -conflicts=("netcfg") +conflicts=('netcfg') source=(ftp://ftp.archlinux.org/other/packages/netctl/netctl-${pkgver}.tar.xz{,.sig}) -arch=(any) +arch=('any') md5sums=('%md5sum%' '%md5sum.sig%') |