diff options
author | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2019-01-02 00:48:28 +0000 |
---|---|---|
committer | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2019-01-02 00:48:28 +0000 |
commit | 4eb9fc5218f539a17e79abee056e1a0fd99e4053 (patch) | |
tree | 3f32ccb063e2991f727ac4ba8324ea2925ebc327 /user/font-cursor-misc | |
parent | d3e6a3ebd735009198e2f1ab1692a19ea3a67144 (diff) | |
download | packages-4eb9fc5218f539a17e79abee056e1a0fd99e4053.tar.gz packages-4eb9fc5218f539a17e79abee056e1a0fd99e4053.tar.bz2 packages-4eb9fc5218f539a17e79abee056e1a0fd99e4053.tar.xz packages-4eb9fc5218f539a17e79abee056e1a0fd99e4053.zip |
user/[X11 fonts]: fix up font paths
Diffstat (limited to 'user/font-cursor-misc')
-rw-r--r-- | user/font-cursor-misc/APKBUILD | 17 |
1 files changed, 6 insertions, 11 deletions
diff --git a/user/font-cursor-misc/APKBUILD b/user/font-cursor-misc/APKBUILD index 8056a774b..f7f9d9a9c 100644 --- a/user/font-cursor-misc/APKBUILD +++ b/user/font-cursor-misc/APKBUILD @@ -1,14 +1,14 @@ # Maintainer: A. Wilcox <awilfox@adelielinux.org> pkgname=font-cursor-misc pkgver=1.0.3 -pkgrel=2 -pkgdesc="Cursor fonts from X.Org" +pkgrel=3 +pkgdesc="X11 cursor fonts" url="https://www.X.Org/" arch="noarch" options="!check" # Can't test fonts. license="Public-Domain" -depends="encodings font-alias fontconfig mkfontdir mkfontscale util-macros" -makedepends="bdftopcf font-util-dev" +depends="encodings font-alias fontconfig" +makedepends="bdftopcf font-util-dev mkfontdir mkfontscale util-macros" source="https://www.X.Org/releases/individual/font/$pkgname-$pkgver.tar.bz2" prepare() { @@ -22,18 +22,13 @@ build() { ./configure \ --build=$CBUILD \ --host=$CHOST \ - --prefix=/usr \ - --with-fontdir=/usr/share/fonts/misc + --prefix=/usr make } package() { cd "$builddir" - make -j1 DESTDIR="$pkgdir" \ - MKFONTDIR=: \ - MKFONTSCALE=: \ - FCCACHE=: \ - install + make -j1 DESTDIR="$pkgdir" install } sha512sums="7ecb7f1c3c11da8b81fc0ff121fa6c1026b11f6c7878ffd0e4959df036511bc579d6b0552422ce13e26a8d188e3406631d2de55cab6b29bc7fce0416a8cffc83 font-cursor-misc-1.0.3.tar.bz2" |