diff options
author | Leo <thinkabit.ukim@gmail.com> | 2019-11-15 12:00:42 +0100 |
---|---|---|
committer | Leo <thinkabit.ukim@gmail.com> | 2019-11-15 12:39:30 +0100 |
commit | a1c910cd119fa3affb146a4638e19daa971ab48f (patch) | |
tree | 4c4ce08bf96bdd2f2c0d25e583f002b1e47436e5 /testing/light | |
parent | 2a8cc0b0f8d0d692654555b81e6ad8f4b92ed3cd (diff) | |
download | aports-a1c910cd119fa3affb146a4638e19daa971ab48f.tar.bz2 aports-a1c910cd119fa3affb146a4638e19daa971ab48f.tar.xz |
testing/light: upgrade to 1.2.1
Diffstat (limited to 'testing/light')
-rw-r--r-- | testing/light/APKBUILD | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/testing/light/APKBUILD b/testing/light/APKBUILD index 7cfbb9181e..f6958f1653 100644 --- a/testing/light/APKBUILD +++ b/testing/light/APKBUILD @@ -1,15 +1,21 @@ # Contributor: Eivind Uggedal <eu@eju.no> # Maintainer: Eivind Uggedal <eu@eju.no> pkgname=light -pkgver=1.2 +pkgver=1.2.1 pkgrel=0 pkgdesc="A program to control backlights and other hardware lights" url="http://haikarainen.github.io/light/" arch="all" license="GPL-3.0-or-later" options="!check" # no test suite +makedepends="autoconf automake" subpackages="$pkgname-doc" -source="https://github.com/haikarainen/light/releases/download/v$pkgver/light-$pkgver.tar.gz" +source="$pkgname-$pkgver.tar.gz::https://github.com/haikarainen/light/archive/v$pkgver.tar.gz" + +prepare() { + default_prepare + autoreconf -fi +} build() { ./configure \ @@ -27,4 +33,4 @@ package() { make DESTDIR="$pkgdir" install } -sha512sums="d35e1fd097ccaf062a5da02ff769a3f916bf49d307f7db03522ad733bec499378585d5b62e4628a3e73db475060ebe4660be82efbc68709ef3ca3342af7cf252 light-1.2.tar.gz" +sha512sums="008ddce57fcf48538127ef8b2a04bbe815b8f2b96ba4d7cbaa386d0d688951ed06c464119a9624e2bb78f274a0899c56cd0a868de64e87b812e55f1556f8b52a light-1.2.1.tar.gz" |