diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2015-11-03 07:56:14 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2015-11-03 08:53:46 +0000 |
commit | aaffae553799acc509118322a8aea1b6b7981792 (patch) | |
tree | c89a52f25111a47eb7306dff56f015971df346ba /community | |
parent | a8a266f81be2a75ff331764fd67ba7c852436a37 (diff) | |
download | aports-aaffae553799acc509118322a8aea1b6b7981792.tar.bz2 aports-aaffae553799acc509118322a8aea1b6b7981792.tar.xz |
communitu/lockdev: fix license and maintainer
Diffstat (limited to 'community')
-rw-r--r-- | community/lockdev/APKBUILD | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/community/lockdev/APKBUILD b/community/lockdev/APKBUILD index cd2c33a102..718f798ce7 100644 --- a/community/lockdev/APKBUILD +++ b/community/lockdev/APKBUILD @@ -1,12 +1,12 @@ # Contributor: Carlo Landmeter <clandmeter@gmail.com> -# Maintainer: +# Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=lockdev pkgver=0_git20130107 pkgrel=1 pkgdesc="Run-time shared library for locking devices, using _both_ FSSTND and SVr4 methods." url="http://packages.qa.debian.org/l/lockdev.html" arch="all" -license="GPL" +license="LGPL-2.1" depends="" depends_dev="" makedepends="$depends_dev automake autoconf libtool" @@ -25,14 +25,14 @@ prepare() { *.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;; esac done + # bootstap fails with missing m4 dir + mkdir m4 + ./bootstrap || return 1 } build() { cd "$_builddir" - [ "$CLIBC" == "musl" ] && export CFLAGS="$CFLAGS -D__GNU_LIBRARY__" - # bootstap fails with missing m4 dir - mkdir m4 - ./bootstrap || return 1 + [ "$CLIBC" = "musl" ] && export CFLAGS="$CFLAGS -D__GNU_LIBRARY__" ./configure \ --build=$CBUILD \ --host=$CHOST \ |