diff options
author | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2019-01-02 00:17:54 +0000 |
---|---|---|
committer | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2019-01-02 00:17:54 +0000 |
commit | c6ece6303ef6b30da84360ecbd58da6dac5c10be (patch) | |
tree | f11b7805949cc72d36a4ce73ffc14c63f84afb54 /user | |
parent | 9e3cfbb1d1ac08594f05d951b49b3ff894d92771 (diff) | |
download | packages-c6ece6303ef6b30da84360ecbd58da6dac5c10be.tar.gz packages-c6ece6303ef6b30da84360ecbd58da6dac5c10be.tar.bz2 packages-c6ece6303ef6b30da84360ecbd58da6dac5c10be.tar.xz packages-c6ece6303ef6b30da84360ecbd58da6dac5c10be.zip |
user/font-adobe-utopia-type1: new package
Diffstat (limited to 'user')
-rw-r--r-- | user/font-adobe-utopia-type1/APKBUILD | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/user/font-adobe-utopia-type1/APKBUILD b/user/font-adobe-utopia-type1/APKBUILD new file mode 100644 index 000000000..fbc243ccf --- /dev/null +++ b/user/font-adobe-utopia-type1/APKBUILD @@ -0,0 +1,49 @@ +# Contributor: A. Wilcox <awilfox@adelielinux.org> +# Maintainer: A. Wilcox <awilfox@adelielinux.org> +pkgname=font-adobe-utopia-type1 +pkgver=1.0.4 +pkgrel=0 +pkgdesc="Type 1 Utopia X11 font from Adobe" +url="https://www.X.Org/" +arch="noarch" +# Okay. +# This is really hairy, but Fedora Legal says the TUG license can apply to the +# X11 distribution[1][2]; it's almost MIT style, but you have to rename the +# font if you modify it in any way. +# [1]: https://fedoraproject.org/wiki/Legal_considerations_for_fonts +# [2]: https://src.fedoraproject.org/cgit/rpms/xorg-x11-fonts.git/tree/xorg-x11-fonts.spec +license="Utopia" +depends="" +makedepends="fontconfig mkfontdir mkfontscale util-macros" +subpackages="" +source="https://www.x.org/releases/individual/font/font-adobe-utopia-type1-$pkgver.tar.bz2" + +prepare() { + cd "$builddir" + default_prepare + update_config_sub +} + +build() { + cd "$builddir" + ./configure \ + --build=$CBUILD \ + --host=$CHOST \ + --prefix=/usr \ + --sysconfdir=/etc \ + --mandir=/usr/share/man \ + --localstatedir=/var + make +} + +check() { + cd "$builddir" + make check +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install +} + +sha512sums="53ff2ce7b17824a0eed1be6c3e3386e51983389f5623e732ac898c4e08769c8720f6d6b7c75b6455e050ec5dc390376747ca4cdb9f831a218f9dd5ee5edcd0d6 font-adobe-utopia-type1-1.0.4.tar.bz2" |