diff options
author | Leo <thinkabit.ukim@gmail.com> | 2019-06-27 00:08:59 -0300 |
---|---|---|
committer | Leo <thinkabit.ukim@gmail.com> | 2019-06-27 00:08:59 -0300 |
commit | cf824b40d797473531a9d9de51203784e56f9800 (patch) | |
tree | 26c8cfa0cd4ccfcd5d04f899eef692b9046f91fa /community | |
parent | 3d173c220e8ddb117715a1e25018f47d2a1ca5bc (diff) | |
download | aports-cf824b40d797473531a9d9de51203784e56f9800.tar.bz2 aports-cf824b40d797473531a9d9de51203784e56f9800.tar.xz |
community/libmatemixer: fix url fix license
Diffstat (limited to 'community')
-rw-r--r-- | community/libmatemixer/APKBUILD | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/community/libmatemixer/APKBUILD b/community/libmatemixer/APKBUILD index 6d7ad4e144..0a6ce244d1 100644 --- a/community/libmatemixer/APKBUILD +++ b/community/libmatemixer/APKBUILD @@ -2,19 +2,17 @@ # Maintainer: Alan Lacerda <alacerda@alpinelinux.org> pkgname=libmatemixer pkgver=1.22.0 -pkgrel=0 +pkgrel=1 pkgdesc="A mixer library for MATE desktop" -url="http://git.mate-desktop.org/libmatemixer/" +url="https://git.mate-desktop.org/libmatemixer/" arch="all" -license="GPL" +license="GPL-2.0-or-later" makedepends="intltool glib-dev alsa-lib-dev" subpackages="$pkgname-doc $pkgname-dev $pkgname-lang" source="https://pub.mate-desktop.org/releases/${pkgver%.*}/$pkgname-$pkgver.tar.xz install-sh.patch" -builddir="$srcdir/$pkgname-$pkgver" build() { - cd "$builddir" ./configure \ --build=$CBUILD \ --host=$CHOST \ @@ -26,12 +24,10 @@ build() { } check() { - cd "$builddir" make check } package() { - cd "$builddir" make DESTDIR="${pkgdir}" install } |