diff options
author | Lawrence DENEIPLE | 2021-10-08 10:16:01 +0200 |
---|---|---|
committer | Lawrence DENEIPLE | 2021-10-08 10:16:01 +0200 |
commit | 8f0b7ae10de24e38e0befcdfbda3688a2907a48b (patch) | |
tree | 7df158550ede9a5cdcc298008ce499f468b3b88e | |
parent | ea586583d96eb3cfb535b1cf531b654e6ea344f6 (diff) | |
download | aur-8f0b7ae10de24e38e0befcdfbda3688a2907a48b.tar.gz |
Change the way symlink are created
-rw-r--r-- | .SRCINFO | 3 | ||||
-rw-r--r-- | PKGBUILD | 2 | ||||
-rw-r--r-- | libmlv0-dev.install | 2 |
3 files changed, 3 insertions, 4 deletions
@@ -1,7 +1,7 @@ pkgbase = libmlv0-dev pkgdesc = The MLV library is a simplified multimedia library. This library is ideal for students who are new to C programming and want to add graphic and sound effects to their programs. pkgver = 2.0.2 - pkgrel = 3 + pkgrel = 4 url = http://www-igm.univ-mlv.fr/~boussica/mlv/api/French/html/index.html install = libmlv0-dev.install arch = any @@ -18,4 +18,3 @@ pkgbase = libmlv0-dev md5sums = 2184ed0c53c0b29764e507aa17155811 pkgname = libmlv0-dev - @@ -1,7 +1,7 @@ # Maintainer: Barazok <barazok.blackrocks@gmail.com> pkgname=libmlv0-dev pkgver=2.0.2 -pkgrel=3 +pkgrel=4 pkgdesc="The MLV library is a simplified multimedia library. This library is ideal for students who are new to C programming and want to add graphic and sound effects to their programs." arch=('any') url="http://www-igm.univ-mlv.fr/~boussica/mlv/api/French/html/index.html" diff --git a/libmlv0-dev.install b/libmlv0-dev.install index 4c2683431c16..7175596c1fb8 100644 --- a/libmlv0-dev.install +++ b/libmlv0-dev.install @@ -1,6 +1,6 @@ post_install() { [ -f /usr/lib/libSDL_gfx.so.15 ] && rm /usr/lib/libSDL_gfx.so.15 - ln -s /usr/lib/libSDL_gfx.so.16.9.1 /usr/lib/libSDL_gfx.so.15 + ln -rs /usr/lib/libSDL_gfx.so /usr/lib/libSDL_gfx.so.15 ldconfig } |