summaryrefslogtreecommitdiff
path: root/community/uucp
diff options
context:
space:
mode:
authorNicolas Reynolds <fauno@kiwwwi.com.ar>2012-01-03 11:39:36 -0300
committerNicolas Reynolds <fauno@kiwwwi.com.ar>2012-01-03 11:39:36 -0300
commitca2e05bb7791418f2af678704160d56d8184a21a (patch)
tree48a6f85c00b3ed2362cc4d9c9d7f5230bb854eba /community/uucp
parent45675ec8babcd9ea73f6a49f51f6e7da9d1f1592 (diff)
parent48c96871761a4aad193d814e87ddb87c322e17d2 (diff)
Merge branch 'master' of ssh://vparabola/home/parabola/abslibre-pre-mips64el
Conflicts: community-staging/libgda3/PKGBUILD community/intel-tbb/PKGBUILD community/mtpaint/PKGBUILD extra/cmake/PKGBUILD extra/graphicsmagick/PKGBUILD extra/kdeadmin/PKGBUILD extra/kdelibs/PKGBUILD extra/lyx/PKGBUILD extra/qtscriptgenerator/PKGBUILD kde-unstable/kdeadmin/PKGBUILD kde-unstable/kdelibs/PKGBUILD kde-unstable/kdeplasma-addons/PKGBUILD libre/libretools/PKGBUILD libre/p7zip-libre/PKGBUILD multilib-testing/lib32-glibc/PKGBUILD multilib/wine/PKGBUILD testing/glibc/PKGBUILD
Diffstat (limited to 'community/uucp')
-rw-r--r--community/uucp/PKGBUILD15
1 files changed, 8 insertions, 7 deletions
diff --git a/community/uucp/PKGBUILD b/community/uucp/PKGBUILD
index 6efbdea2f..85ad36a75 100644
--- a/community/uucp/PKGBUILD
+++ b/community/uucp/PKGBUILD
@@ -1,8 +1,10 @@
+# $Id: PKGBUILD 61375 2011-12-29 09:59:32Z spupykin $
+# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Contributor: Jick Nan <jick.nan@gmail.com>
pkgname=uucp
pkgver=1.07
-pkgrel=2
+pkgrel=3
pkgdesc="Taylor UUCP is a free implementation of UUCP and is the standard UUCP used on the GNU system"
arch=(i686 x86_64 'mips64el')
url="http://www.gnu.org/software/uucp/uucp.html"
@@ -17,14 +19,13 @@ md5sums=('64c54d43787339a7cced48390eb3e1d0')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
- ./configure --prefix=/usr --mandir=/usr/share/man || return 1
- make || return 1
- make DESTDIR="${pkgdir}" install || return 1
+ ./configure --prefix=/usr --mandir=/usr/share/man --with-newconfigdir=/etc/uucp
+ make
+ make DESTDIR="${pkgdir}" install
- install -D -m644 sample/config ${pkgdir}/etc/uucp/config && \
- install -D -m644 sample/sys1 ${pkgdir}/etc/uucp/sys && \
+ install -D -m644 sample/config ${pkgdir}/etc/uucp/config
+ install -D -m644 sample/sys1 ${pkgdir}/etc/uucp/sys
install -D -m644 sample/port ${pkgdir}/etc/uucp/port
-
mv ${pkgdir}/usr/info ${pkgdir}/usr/share/
}