Date: Friday, June 17, 2011 @ 14:24:49 Author: andrea Revision: 127711
upgpkg: dotconf 1.3-2 new tarball Modified: dotconf/trunk/PKGBUILD ----------+ PKGBUILD | 22 ++++++---------------- 1 file changed, 6 insertions(+), 16 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2011-06-17 18:11:14 UTC (rev 127710) +++ PKGBUILD 2011-06-17 18:24:49 UTC (rev 127711) @@ -4,35 +4,25 @@ pkgname=dotconf pkgver=1.3 -pkgrel=1 +pkgrel=2 pkgdesc='A C library for parsing configuration files' url="https://github.com/williamh/dotconf" arch=('i686' 'x86_64') depends=('glibc') makedepends=('pkgconfig' 'findutils') license=('LGPL2.1') -source=("http://files.opentts.org/${pkgname}/${pkgname}-${pkgver}.tar.gz") -md5sums=('35c19ec9b96648f53e987e47e52dbc4c') +source=(${pkgname}-${pkgver}.tar.gz::"https://github.com/williamh/${pkgname}/tarball/v${pkgver}") +md5sums=('36bfdde245072fc2f4f5766b7db97c45') options=('!libtool') build() { - cd "${srcdir}/${pkgname}-${pkgver}" + cd "${srcdir}"/williamh-${pkgname}-4cd7b3a + autoreconf -i ./configure --prefix=/usr make } package() { - cd "${srcdir}/${pkgname}-${pkgver}" + cd "${srcdir}"/williamh-${pkgname}-4cd7b3a make DESTDIR="${pkgdir}" install - - # There are no manpages. Docu consists of textfiles and small examples. - # "make install" didn't install the docu, so do it manually. - install -d "${pkgdir}"/usr/share/doc/${pkgname} - cp -a doc/*.txt README examples/ "${pkgdir}"/usr/share/doc/${pkgname} - # Get rid of files specific to Microsoft products: - find "${pkgdir}"/usr/share/doc/${pkgname} -name '*.dsp' | xargs rm -f - - # Dotconf uses libpool internally for memory management. No need to install. - rm -f "${pkgdir}"/usr/lib/libpool.a - rm -f "${pkgdir}"/usr/include/libpool.h }
