summarylogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.SRCINFO6
-rw-r--r--PKGBUILD12
2 files changed, 7 insertions, 11 deletions
diff --git a/.SRCINFO b/.SRCINFO
index bf895daa8b8b..7ff37abaa5c2 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,13 +1,13 @@
pkgbase = adflib
- pkgdesc = A free, portable and open implementation of the Commodore Amiga filesystem
+ pkgdesc = A free, portable and open implementation of the Commodore Amiga filesystem - including the unadf tool
pkgver = 0.8.0
- pkgrel = 2
+ pkgrel = 3
url = http://lclevy.free.fr/adflib/adflib.html
arch = i686
arch = x86_64
license = GPL
depends = glibc
- optdepends = unadf
+ conflicts = unadf
source = https://github.com/lclevy/ADFlib/archive/refs/tags/v0.8.0.tar.gz
sha256sums = fa78b6cd1139985c16702b3e64614f5721aa63bb0a060969a92c2e8fc52dd3ed
diff --git a/PKGBUILD b/PKGBUILD
index 65586f8f96d4..fd5d8df56844 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -6,9 +6,9 @@
#
pkgname=adflib
pkgver=0.8.0
-pkgrel=2
+pkgrel=3
epoch=
-pkgdesc="A free, portable and open implementation of the Commodore Amiga filesystem"
+pkgdesc="A free, portable and open implementation of the Commodore Amiga filesystem - including the unadf tool"
arch=('i686' 'x86_64')
_pkgname=ADFlib
_pkgver=${pkgver}
@@ -18,9 +18,9 @@ groups=()
depends=('glibc')
makedepends=()
checkdepends=()
-optdepends=('unadf')
+optdepends=()
provides=()
-conflicts=()
+conflicts=('unadf')
replaces=()
backup=()
options=()
@@ -50,10 +50,6 @@ check() {
package() {
cd "${srcdir}/${_pkgname}-${_pkgver}"
make DESTDIR="${pkgdir}/" install
- #
- rm -rf "${pkgdir}/usr/bin/"
- rm -rf "${pkgdir}/usr/man/"
- rm -rf "${pkgdir}/usr/share/man/"
}
# EOF