diff options
author | Diego Miguel | 2023-11-25 16:25:48 +0100 |
---|---|---|
committer | Diego Miguel | 2023-11-25 16:25:48 +0100 |
commit | 486022906e3e7479139db31319751d48d910969a (patch) | |
tree | bd9ac9db0e3bfbfe36ee0dd19ec85f9ee8b28ee5 | |
parent | 501165f4df2d2d04b0417430e033f19e5798c801 (diff) | |
download | aur-486022906e3e7479139db31319751d48d910969a.tar.gz |
Fix symbolic link path
-rw-r--r-- | .SRCINFO | 2 | ||||
-rw-r--r-- | PKGBUILD | 4 |
2 files changed, 3 insertions, 3 deletions
@@ -1,7 +1,7 @@ pkgbase = ttf-apple-emoji pkgdesc = Apple Color Emoji is a color typeface used by iOS and macOS to display emoji pkgver = 16.4 - pkgrel = 2 + pkgrel = 3 url = https://github.com/samuelngs/apple-emoji-linux arch = any license = custom @@ -4,7 +4,7 @@ pkgname=ttf-apple-emoji pkgver=16.4 -pkgrel=2 +pkgrel=3 pkgdesc='Apple Color Emoji is a color typeface used by iOS and macOS to display emoji' arch=('any') url='https://github.com/samuelngs/apple-emoji-linux' @@ -36,6 +36,6 @@ package() { # Install fontconfig files install -Dm 644 45-apple-emoji.conf -t "${pkgdir}/usr/share/fontconfig/conf.avail/" install -d "${pkgdir}/etc/fonts/conf.d" - ln -s "${pkgdir}/usr/share/fontconfig/conf.avail/45-apple-emoji.conf" "${pkgdir}/etc/fonts/conf.d/" + ln -s "/usr/share/fontconfig/conf.avail/45-apple-emoji.conf" "${pkgdir}/etc/fonts/conf.d/" } |