1
0
mirror of https://github.com/bertptrs/aur.git synced 2025-12-25 20:40:32 +01:00

Dump unzip dependency.

This commit is contained in:
Bert Peters
2017-05-08 10:50:52 +02:00
parent d5946ba9fe
commit 8c7fb7ebd7
2 changed files with 3 additions and 6 deletions

View File

@@ -1,11 +1,10 @@
pkgbase = ttf-lastresort pkgbase = ttf-lastresort
pkgdesc = Unicode last resort fallback font. pkgdesc = Unicode last resort fallback font.
pkgver = 1 pkgver = 1
pkgrel = 1 pkgrel = 2
url = http://www.unicode.org/policies/lastresortfont_eula.html url = http://www.unicode.org/policies/lastresortfont_eula.html
arch = any arch = any
license = custom license = custom
makedepends = unzip
source = http://www.unicode.org/cgi-bin/LastResortDownload.zip source = http://www.unicode.org/cgi-bin/LastResortDownload.zip
source = LICENSE source = LICENSE
sha256sums = 79038e1374c335538b595e0f16f82f255f053cbd48cb1fb53578888ca3c3072e sha256sums = 79038e1374c335538b595e0f16f82f255f053cbd48cb1fb53578888ca3c3072e

View File

@@ -1,19 +1,17 @@
# Maintainer: Bert Peters <bert@bertptrs.nl> # Maintainer: Bert Peters <bert@bertptrs.nl>
pkgname=ttf-lastresort pkgname=ttf-lastresort
pkgver=1 pkgver=1
pkgrel=1 pkgrel=2
pkgdesc="Unicode last resort fallback font." pkgdesc="Unicode last resort fallback font."
arch=('any') arch=('any')
url="http://www.unicode.org/policies/lastresortfont_eula.html" url="http://www.unicode.org/policies/lastresortfont_eula.html"
license=('custom') license=('custom')
makedepends=('unzip')
source=("http://www.unicode.org/cgi-bin/LastResortDownload.zip" source=("http://www.unicode.org/cgi-bin/LastResortDownload.zip"
"LICENSE") "LICENSE")
sha256sums=('79038e1374c335538b595e0f16f82f255f053cbd48cb1fb53578888ca3c3072e' sha256sums=('79038e1374c335538b595e0f16f82f255f053cbd48cb1fb53578888ca3c3072e'
'9082dee8e04cad811763d142f6da465e0b62af4a25bf1b86ed44f0190326ebbc') '9082dee8e04cad811763d142f6da465e0b62af4a25bf1b86ed44f0190326ebbc')
package() { package() {
install -d "$pkgdir/usr/share/fonts/TTF" install -Dm644 "LastResort.ttf" "$pkgdir/usr/share/fonts/TTF/LastResort.ttf"
install -t "$pkgdir/usr/share/fonts/TTF" -m644 "LastResort.ttf"
install -Dm644 "LICENSE" "$pkgdir/usr/share/licenses/ttf-lastresort/LICENSE" install -Dm644 "LICENSE" "$pkgdir/usr/share/licenses/ttf-lastresort/LICENSE"
} }