diff options
Diffstat (limited to 'community/sloccount/PKGBUILD')
-rw-r--r-- | community/sloccount/PKGBUILD | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/community/sloccount/PKGBUILD b/community/sloccount/PKGBUILD index 93a967095..e3358bc34 100644 --- a/community/sloccount/PKGBUILD +++ b/community/sloccount/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 17768 2010-05-25 12:20:54Z cbrannon $ +# $Id: PKGBUILD 65665 2012-02-21 20:27:37Z cbrannon $ # Maintainer: Chris Brannon <cmbrannon79@gmail.com> # Contributor: Allan McRae <allan@archlinux.org> # Contributor: Christof Musik <christof@senfdax.de> pkgname=sloccount pkgver=2.26 -pkgrel=5 +pkgrel=6 pkgdesc="Tools for counting physical source lines of code" url="http://www.dwheeler.com/sloccount/" license=('GPL') @@ -14,10 +14,10 @@ arch=('i686' 'x86_64' 'mips64el') source=(http://www.dwheeler.com/${pkgname}/${pkgname}-${pkgver}.tar.gz) md5sums=('09abd6e2a016ebaf7552068a1dba1249') -build() { +package() { cd "${srcdir}/${pkgname}-${pkgver}" - install -dm755 "${pkgdir}/usr/bin" || return 1 - make PREFIX="${pkgdir}/usr" install || return 1 - mv "${pkgdir}/usr/share/doc/sloccount-2.26-1" "${pkgdir}/usr/share/doc/sloccount" || return 1 + install -dm755 "${pkgdir}/usr/bin" + make PREFIX="${pkgdir}/usr" install + mv "${pkgdir}/usr/share/doc/sloccount-2.26-1" "${pkgdir}/usr/share/doc/sloccount" chmod 644 "$pkgdir/usr/share/doc/sloccount/"* } |