diff options
author | James Meyer <james.meyer@operamail.com> | 2010-03-27 16:30:16 (GMT) |
---|---|---|
committer | James Meyer <james.meyer@operamail.com> | 2010-03-27 16:30:16 (GMT) |
commit | f98d14ffb1fa5c2620e0e111f08bb0883b6ba769 (patch) | |
tree | 63d250983c01cc3420a3486bee6a6dfe7cf56fcf /abs/extra-testing/pth | |
parent | 8f02b9491ffeca5c22133021c0d78effba826b1f (diff) | |
download | linhes_pkgbuild-f98d14ffb1fa5c2620e0e111f08bb0883b6ba769.zip linhes_pkgbuild-f98d14ffb1fa5c2620e0e111f08bb0883b6ba769.tar.gz linhes_pkgbuild-f98d14ffb1fa5c2620e0e111f08bb0883b6ba769.tar.bz2 |
mutt , gnupg ,gpgme ,mime-types, pth: initial import.
This is for mutt and all the things it dragged in
closes #464
Diffstat (limited to 'abs/extra-testing/pth')
-rw-r--r-- | abs/extra-testing/pth/PKGBUILD | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/abs/extra-testing/pth/PKGBUILD b/abs/extra-testing/pth/PKGBUILD new file mode 100644 index 0000000..2e0f66b --- /dev/null +++ b/abs/extra-testing/pth/PKGBUILD @@ -0,0 +1,22 @@ +# $Id: PKGBUILD 35785 2009-04-17 05:07:12Z eric $ +# Maintainer: damir <damir@archlinux.org> + +pkgname=pth +pkgver=2.0.7 +pkgrel=2 +pkgdesc="The GNU Portable Threads." +arch=('i686' 'x86_64') +url="http://www.gnu.org/software/pth/" +license=('LGPL') +depends=('glibc') +options=('!libtool' '!makeflags') +source=(ftp://ftp.gnu.org/gnu/pth/${pkgname}-${pkgver}.tar.gz) +md5sums=('9cb4a25331a4c4db866a31cbe507c793') + +build() { + cd ${srcdir}/${pkgname}-${pkgver} + ./configure --prefix=/usr --sysconfdir=/etc \ + --localstatedir=/var --mandir=/usr/share/man || return 1 + make || return 1 + make DESTDIR=${pkgdir} install || return 1 +} |