diff options
author | Mathew Meins <mathewm@sdf.lonestar.org> | 2015-04-08 13:28:07 +0000 |
---|---|---|
committer | Leonardo Arena <rnalrd@alpinelinux.org> | 2015-04-16 12:57:40 +0000 |
commit | 223209328986d4affa2cbd2b330eb07d357c526c (patch) | |
tree | 89f612c3d97300e82df39a94e1095c5721045a92 /testing | |
parent | 6f3e4594878b3172c2adb06841e0d16531810c30 (diff) | |
download | aports-223209328986d4affa2cbd2b330eb07d357c526c.tar.bz2 aports-223209328986d4affa2cbd2b330eb07d357c526c.tar.xz |
testing/uucp: new aport
http://airs.com/ian/uucp.html
Taylor UUCP is a free implementation of UUCP
Signed-off-by: Leonardo Arena <rnalrd@alpinelinux.org>
Diffstat (limited to 'testing')
-rw-r--r-- | testing/uucp/APKBUILD | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/testing/uucp/APKBUILD b/testing/uucp/APKBUILD new file mode 100644 index 0000000000..42353f4cb2 --- /dev/null +++ b/testing/uucp/APKBUILD @@ -0,0 +1,66 @@ +# Contributor: Mathew Meins <mathewm@sdf.lonestar.org> +# Maintainer: Mathew Meins <mathewm@sdf.lonestar.org> +pkgname=uucp +pkgver=1.07 +pkgrel=1 +pkgdesc="Taylor UUCP is a free implementation of UUCP" +url="http://airs.com/ian/uucp.html" +arch="all" +license="GPL2" +depends="" +depends_dev="" +makedepends="$depends_dev" +install="" +subpackages="$pkgname-doc" +options="suid" +pkgusers="uucp" +pkggroups="uucp" +source="ftp://ftp.gnu.org/pub/gnu/uucp/uucp-1.07.tar.gz" + +_builddir="$srcdir/uucp-$pkgver" +prepare() { + local i + cd "$_builddir" + for i in $source; do + case $i in + *.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;; + esac + done +} + +build() { + cd "$_builddir" + ./configure --prefix=/usr \ + --sysconfdir=/etc \ + --with-newconfigdir=/etc/uucp \ + --mandir=/usr/share/man \ + --infodir=/usr/share/info \ + --localstatedir=/var || return 1 + make || return 1 +} + +package() { + cd "$_builddir" + make DESTDIR="$pkgdir" install || return 1 + + install -m4555 -o uucp -g uucp "$_builddir"/uuxqt "$pkgdir"/usr/sbin/uuxqt + install -m4555 -o uucp -g uucp "$_builddir"/uucico "$pkgdir"/usr/sbin/uucico + install -m4555 -o uucp -g uucp "$_builddir"/uux "$pkgdir"/usr/bin/uux + install -m4555 -o uucp -g uucp "$_builddir"/uucp "$pkgdir"/usr/bin/uucp + install -m4555 -o uucp -g uucp "$_builddir"/uuname "$pkgdir"/usr/bin/uuname + install -m4555 -o uucp -g uucp "$_builddir"/cu "$pkgdir"/usr/bin/cu + install -m4555 -o uucp -g uucp "$_builddir"/uustat "$pkgdir"/usr/bin/uustat + + install -m755 -D -o root -g root -d "$pkgdir"/etc/uucp + install -m755 -D -o uucp -g uucp -d "$pkgdir"/var/spool/uucp + install -m755 -D -o uucp -g uucp -d "$pkgdir"/var/spool/uucppublic + install -m755 -D -o uucp -g uucp -d "$pkgdir"/var/log/uucp + + touch "$pkgdir"/etc/uucp/call "$pkgdir"/etc/uucp/dial "$pkgdir"/etc/uucp/dialcode "$pkgdir"/etc/uucp/passwd "$pkgdir"/etc/uucp/port "$pkgdir"/etc/uucp/sys + chown root:uucp "$pkgdir"/etc/uucp/call "$pkgdir"/etc/uucp/passwd + chmod 640 "$pkgdir"/etc/uucp/call "$pkgdir"/etc/uucp/passwd +} + +md5sums="64c54d43787339a7cced48390eb3e1d0 uucp-1.07.tar.gz" +sha256sums="060c15bfba6cfd1171ad81f782789032113e199a5aded8f8e0c1c5bd1385b62c uucp-1.07.tar.gz" +sha512sums="13d215890234e638bed53dce7bab6eb78e0ce6b658f23ac1d7f8abc6e1d97963bef76aa4148ca644f450d5a1678fac940b73fbcd5845d7f5bea3afbd8055229b uucp-1.07.tar.gz" |