summaryrefslogtreecommitdiff
path: root/community/libbsd
diff options
context:
space:
mode:
authorNicolás Reynolds <fauno@kiwwwi.com.ar>2012-08-24 12:49:28 -0300
committerNicolás Reynolds <fauno@kiwwwi.com.ar>2012-08-24 12:49:28 -0300
commit0c5c6934b681707ec1a459da4318aabd7f9b796f (patch)
tree7ad632e8f99be5f959a9208726944302eb702e76 /community/libbsd
parent1e612047394eb4eee29357e7ab156db60b88f783 (diff)
parent12b846e1ead204137d60caba25f7e494b51b4dc8 (diff)
Merge branch 'master' of ssh://vparabola/home/parabola/abslibre-pre-mips64el
Conflicts: community/linux-tools/PKGBUILD community/powertop/PKGBUILD
Diffstat (limited to 'community/libbsd')
-rw-r--r--community/libbsd/PKGBUILD16
1 files changed, 8 insertions, 8 deletions
diff --git a/community/libbsd/PKGBUILD b/community/libbsd/PKGBUILD
index 14d814cd5..60a62913c 100644
--- a/community/libbsd/PKGBUILD
+++ b/community/libbsd/PKGBUILD
@@ -1,30 +1,30 @@
+# $Id: PKGBUILD 75426 2012-08-23 01:07:04Z svenstaro $
# Maintainer: Sven-Hendrik Haase <sh@lutzhaase.com>
# Contributor: Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar>
pkgname=libbsd
-pkgver=0.3.0
+pkgver=0.4.2
pkgrel=1
pkgdesc="Provides useful functions commonly found on BSD systems like strlcpy()"
arch=('i686' 'x86_64' 'mips64el')
url="http://libbsd.freedesktop.org"
license=('custom')
depends=('glibc')
-source=(http://libbsd.freedesktop.org/releases/$pkgname-$pkgver.tar.gz
- LICENSE)
-md5sums=('833e58531b4bd84b119b53d834d8e0d8'
- '5bd59ff83a7df4873b034478ffae62a6')
+source=(http://libbsd.freedesktop.org/releases/$pkgname-$pkgver.tar.gz)
+md5sums=('591fc9de4ca22f78cf87a94e648a92f4')
build() {
cd $srcdir/$pkgname-$pkgver
- make exec_prefix=/usr includedir=/usr/include/libbsd
+ ./configure --prefix=/usr
+ make
}
package() {
cd $srcdir/$pkgname-$pkgver
- make exec_prefix=/usr includedir=/usr/include/libbsd DESTDIR=$pkgdir install
- install -D -m644 $srcdir/LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+ make DESTDIR=$pkgdir install
+ install -D -m644 COPYING $pkgdir/usr/share/licenses/$pkgname/LICENSE
}
# vim:set ts=2 sw=2 et: