aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFabian Affolter <fabian@affolter-engineering.ch>2013-10-30 13:16:08 +0000
committerNatanael Copa <ncopa@alpinelinux.org>2013-10-31 12:07:13 +0000
commita704762f40dc75fdc41ebc4d790abc1961cdadfd (patch)
tree63024e82e0d61373dc17ed7cb49ec0d464a4a4ab
parentc0590c1c769eed88b44c3f4f58d8b5d59d95a444 (diff)
downloadalpine_aports-a704762f40dc75fdc41ebc4d790abc1961cdadfd.tar.bz2
alpine_aports-a704762f40dc75fdc41ebc4d790abc1961cdadfd.tar.xz
alpine_aports-a704762f40dc75fdc41ebc4d790abc1961cdadfd.zip
main/apr-util: specify license
-rw-r--r--main/apr-util/APKBUILD6
1 files changed, 2 insertions, 4 deletions
diff --git a/main/apr-util/APKBUILD b/main/apr-util/APKBUILD
index 7768dbe68e..7f564c2b24 100644
--- a/main/apr-util/APKBUILD
+++ b/main/apr-util/APKBUILD
@@ -1,11 +1,11 @@
1# Maintainer: Natanael Copa <ncopa@alpinelinux.org> 1# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
2pkgname=apr-util 2pkgname=apr-util
3pkgver=1.5.2 3pkgver=1.5.2
4pkgrel=0 4pkgrel=1
5pkgdesc="The Apache Portable Runtime Utility Library" 5pkgdesc="The Apache Portable Runtime Utility Library"
6url="http://apr.apache.org/" 6url="http://apr.apache.org/"
7arch="all" 7arch="all"
8license="APACHE" 8license="ASL 2.0"
9depends= 9depends=
10subpackages="$pkgname-dev $pkgname-dbm_db $pkgname-dbd_pgsql 10subpackages="$pkgname-dev $pkgname-dbm_db $pkgname-dbd_pgsql
11 $pkgname-dbd_sqlite3 $pkgname-ldap" 11 $pkgname-dbd_sqlite3 $pkgname-ldap"
@@ -16,7 +16,6 @@ depends_dev="expat-dev apr-dev openldap-dev sqlite-dev postgresql-dev
16source="http://www.apache.org/dist/apr/$pkgname-$pkgver.tar.bz2" 16source="http://www.apache.org/dist/apr/$pkgname-$pkgver.tar.bz2"
17 17
18_builddir="$srcdir/$pkgname-$pkgver" 18_builddir="$srcdir/$pkgname-$pkgver"
19
20prepare() { 19prepare() {
21 cd "$_builddir" 20 cd "$_builddir"
22 update_config_sub || return 1 21 update_config_sub || return 1
@@ -37,7 +36,6 @@ build() {
37 --without-sqlite2 \ 36 --without-sqlite2 \
38 --without-gdbm \ 37 --without-gdbm \
39 || return 1 38 || return 1
40
41 make || return 1 39 make || return 1
42} 40}
43 41