Date: Friday, June 17, 2011 @ 14:11:14 Author: andrea Revision: 127710
new project url and minor fixes Modified: dotconf/trunk/PKGBUILD (contents, properties) ----------+ PKGBUILD | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2011-06-17 18:04:39 UTC (rev 127709) +++ PKGBUILD 2011-06-17 18:11:14 UTC (rev 127710) @@ -6,7 +6,7 @@ pkgver=1.3 pkgrel=1 pkgdesc='A C library for parsing configuration files' -url="http://www.opentts.org/projects/dotconf/" +url="https://github.com/williamh/dotconf" arch=('i686' 'x86_64') depends=('glibc') makedepends=('pkgconfig' 'findutils') @@ -27,12 +27,12 @@ # 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} + 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 + 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 + rm -f "${pkgdir}"/usr/lib/libpool.a + rm -f "${pkgdir}"/usr/include/libpool.h } Property changes on: dotconf/trunk/PKGBUILD ___________________________________________________________________ Added: svn:keywords + Id
