diff options
author | Leo <thinkabit.ukim@gmail.com> | 2020-02-24 20:57:57 -0300 |
---|---|---|
committer | Leo <thinkabit.ukim@gmail.com> | 2020-02-24 23:32:57 -0300 |
commit | 9d8c2488de59cb1e0632225b420eb3bfd4d4cb84 (patch) | |
tree | d0c4cf6c148344ebe845e8f353489ed263cb48a4 | |
parent | 55bd7a192e1ddfa4d6eca52aa0b4071b9cd25570 (diff) | |
download | aports-9d8c2488de59cb1e0632225b420eb3bfd4d4cb84.tar.bz2 aports-9d8c2488de59cb1e0632225b420eb3bfd4d4cb84.tar.xz |
community/gnome-common: modernize, fix license=
-rw-r--r-- | community/gnome-common/APKBUILD | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/community/gnome-common/APKBUILD b/community/gnome-common/APKBUILD index 042a80d5d8..c156fbb1ec 100644 --- a/community/gnome-common/APKBUILD +++ b/community/gnome-common/APKBUILD @@ -2,21 +2,18 @@ # Maintainer: Francesco Colista <fcolista@alpinelinux.org> pkgname=gnome-common pkgver=3.18.0 -pkgrel=1 +pkgrel=2 pkgdesc="Common development macros for GNOME" url="https://www.gnome.org" arch="noarch" -license="GPL" +license="LGPL-2.1-or-later" source="https://download.gnome.org/sources/gnome-common/${pkgver%.*}/gnome-common-$pkgver.tar.xz" -builddir="$srcdir"/gnome-common-$pkgver check() { - cd "$builddir" make check } build() { - cd "$builddir" ./configure \ --build=$CBUILD \ --host=$CHOST \ @@ -29,7 +26,6 @@ build() { } package() { - cd "$builddir" make DESTDIR="$pkgdir" install } |