diff options
author | root <root@rshg054.dnsready.net> | 2011-12-30 23:14:51 +0000 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2011-12-30 23:14:51 +0000 |
commit | 5d738f85840804ee493d267784d9cce5dc52f535 (patch) | |
tree | 646f79576fee9f326fa833f7ca480d2355056556 /community/uucp | |
parent | 8a823402bd45dc875237a20f174ecbe64e1bae4d (diff) |
Fri Dec 30 23:14:51 UTC 2011
Diffstat (limited to 'community/uucp')
-rw-r--r-- | community/uucp/PKGBUILD | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/community/uucp/PKGBUILD b/community/uucp/PKGBUILD index ffc819a91..065fee173 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) 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/ } |