mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
45 lines
1.4 KiB
Bash
45 lines
1.4 KiB
Bash
# Maintainer: Denis Yantarev <denis dot yantarev at gmail dot com>
|
|
# Contributor: SJ_UnderWater
|
|
# Contributor: Dominik Dingel <mail at wodar dot de>
|
|
# Contributor: William Udovich <nerdzrule7 at earthlink dot net>
|
|
# Contributor: Farhan Yousaf <farhany at xaviya dot com>
|
|
|
|
pkgname=netatalk
|
|
pkgver=3.1.7
|
|
pkgrel=1
|
|
pkgdesc='Open-source implementation of the Apple Filing Protocol'
|
|
arch=('i686' 'x86_64' 'armv6h' 'armv7h')
|
|
url='http://netatalk.sourceforge.net'
|
|
license=('GPL')
|
|
depends=('avahi>=0.6' 'libldap' 'libgcrypt>=1.2.3' 'libevent' 'python2' 'dbus-glib' 'python2-dbus')
|
|
replaces=('netatalk-git' 'netatalk2')
|
|
backup=('etc/afp.conf'
|
|
'etc/extmap.conf')
|
|
install=$pkgname.install
|
|
source=(http://downloads.sourceforge.net/project/$pkgname/$pkgname/$pkgver/$pkgname-$pkgver.tar.bz2
|
|
avahi-client.patch
|
|
python2.patch)
|
|
md5sums=('831ec8bf9e084b64f965d16c528af299'
|
|
'00379aacb88dcac8c1e0513da1a5f24c'
|
|
'97bc0467dd8a866d9f0835d6440e3c19')
|
|
|
|
prepare() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
patch -p0 < "$srcdir/python2.patch"
|
|
patch -p0 < "$srcdir/avahi-client.patch"
|
|
}
|
|
|
|
build() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
autoreconf -fi
|
|
CFLAGS="-Wno-unused-result -O2" \
|
|
./configure --prefix=/usr --localstatedir=/var/state --sysconfdir=/etc \
|
|
--sbindir=/usr/bin --enable-silent-rules --with-init-style=systemd \
|
|
--with-cracklib --with-cnid-cdb-backend --enable-pgp-uam --with-libevent=no
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
make DESTDIR="$pkgdir" install
|
|
}
|