diff options
author | Leo <thinkabit.ukim@gmail.com> | 2019-06-07 15:26:07 -0300 |
---|---|---|
committer | Leo <thinkabit.ukim@gmail.com> | 2019-06-11 06:44:26 -0300 |
commit | 7053fd8f5d4227c6aada01b9e6ed2f446b4f699b (patch) | |
tree | 31ddae4e57fdec3f103ff2e03e8af1ca3f5b832c /testing/ttf-hack | |
parent | 856145409a367acc0b1f7a74722320a3dc4d1f2d (diff) | |
download | aports-7053fd8f5d4227c6aada01b9e6ed2f446b4f699b.tar.bz2 aports-7053fd8f5d4227c6aada01b9e6ed2f446b4f699b.tar.xz |
testing/ttf-hack: fix url
Diffstat (limited to 'testing/ttf-hack')
-rw-r--r-- | testing/ttf-hack/APKBUILD | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/testing/ttf-hack/APKBUILD b/testing/ttf-hack/APKBUILD index 11235d2431..2aa04167b9 100644 --- a/testing/ttf-hack/APKBUILD +++ b/testing/ttf-hack/APKBUILD @@ -2,15 +2,14 @@ # Maintainer: Ivan Tham <pickfire@riseup.net> pkgname=ttf-hack pkgver=3.003 -pkgrel=0 +pkgrel=1 pkgdesc="A typeface designed for source code" -url="http://sourcefoundry.org/hack/" +url="https://sourcefoundry.org/hack/" arch="noarch" options="!check" license="MIT" depends="fontconfig mkfontscale" source="https://github.com/source-foundry/Hack/releases/download/v$pkgver/Hack-v$pkgver-ttf.tar.xz" -builddir="$srcdir/$pkgname-$pkgver" unpack() { mkdir -p "$builddir" @@ -19,7 +18,6 @@ unpack() { } package() { - cd $builddir mkdir -p "$pkgdir"/usr/share/fonts/$pkgname install -m644 *.ttf "$pkgdir"/usr/share/fonts/$pkgname } |