diff options
author | Sascha Paunovic <azarus@posteo.net> | 2018-06-12 09:25:55 +0200 |
---|---|---|
committer | Leonardo Arena <rnalrd@alpinelinux.org> | 2018-07-18 07:47:59 +0000 |
commit | 26ece7e0b5854e43c5d6bb2e91fb1162c21e0cb0 (patch) | |
tree | 6f92804fde4931332a443f33e01b0d0f80ec75c8 | |
parent | 914850bf328f128012a0fdb536c981f2d493a9f2 (diff) | |
download | aports-26ece7e0b5854e43c5d6bb2e91fb1162c21e0cb0.tar.bz2 aports-26ece7e0b5854e43c5d6bb2e91fb1162c21e0cb0.tar.xz |
testing/font-overpass: upgrade to 3.0.3
- remove unused variables
- remove unnecessary build()
- fix build by creating the install directory first
- take maintainership
-rw-r--r-- | testing/font-overpass/APKBUILD | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/testing/font-overpass/APKBUILD b/testing/font-overpass/APKBUILD index 8cdec82e80..e9e1ba614e 100644 --- a/testing/font-overpass/APKBUILD +++ b/testing/font-overpass/APKBUILD @@ -1,17 +1,14 @@ # Contributor: Carlo Landmeter <clandmeter@gmail.com> -# Maintainer: +# Maintainer: Sascha Paunovic <azarus@posteo.net> pkgname=font-overpass -pkgver=3.0.2 +pkgver=3.0.3 pkgrel=0 pkgdesc="Overpass open source web font family" url="http://overpassfont.org/" arch="noarch" license="OFL-1.1" depends="fontconfig" -makedepends="" -options="!check" -install="" -subpackages="" +options="!check" # no test suite source="Overpass-$pkgver.tar.gz::https://github.com/RedHatBrand/Overpass/archive/$pkgver.tar.gz" builddir="$srcdir/Overpass-$pkgver" @@ -21,10 +18,11 @@ build() { package() { cd "$builddir" + mkdir -p "$pkgdir"/usr/share/fonts/OTF install -Dm644 desktop-fonts/overpass/*.otf \ "$pkgdir"/usr/share/fonts/OTF install -Dm644 desktop-fonts/overpass-mono/*.otf \ "$pkgdir"/usr/share/fonts/OTF } -sha512sums="ea9dc82b6935c68f6208ae6ad95e488c01867064cb9c83e47c8bc8a8f767e4144ffc468ed1ae38d0f204b5ecb50b9147081411e7d9f21c0735125e7db6c22f58 Overpass-3.0.2.tar.gz" +sha512sums="d2a3284f6f82e80e46af23064a374da2926a3563ee668683aa1a8db7a9163cc80c4fa8a3077876dc552a36e9d621c45218df44485b7b6a6adc3fc6df62c448d0 Overpass-3.0.3.tar.gz" |