diff options
Diffstat (limited to 'mpck')
-rw-r--r-- | mpck/.SRCINFO | 12 | ||||
-rw-r--r-- | mpck/PKGBUILD | 31 |
2 files changed, 43 insertions, 0 deletions
diff --git a/mpck/.SRCINFO b/mpck/.SRCINFO new file mode 100644 index 0000000..0d3470c --- /dev/null +++ b/mpck/.SRCINFO @@ -0,0 +1,12 @@ +pkgbase = mpck + pkgdesc = Reads MP3 files and tries to determine if they are correct + pkgver = 0.21 + pkgrel = 2 + url = https://checkmate.gissen.nl + arch = x86_64 + license = GPL + depends = glibc + source = https://checkmate.gissen.nl/checkmate-0.21.tar.gz + md5sums = 81d5d0b620f0fe3cc23c272021e9f23c + +pkgname = mpck diff --git a/mpck/PKGBUILD b/mpck/PKGBUILD new file mode 100644 index 0000000..e31e3ba --- /dev/null +++ b/mpck/PKGBUILD @@ -0,0 +1,31 @@ +# Maintainer: Deposite Pirate <dpirate at metalpunks dot info> +# +# Previous maintainers: +# Giovanni Scafora <giovanni at archlinux dot org> +# damir <damir at archlinux dot org> +# +# Upstream: https://git.metalpunks.info/arch-ports + +pkgname=mpck +pkgver=0.21 +pkgrel=2 +license=('GPL') +pkgdesc="Reads MP3 files and tries to determine if they are correct" +arch=('x86_64') +url="https://checkmate.gissen.nl" +depends=('glibc') +source=("https://checkmate.gissen.nl/checkmate-${pkgver}.tar.gz") +md5sums=('81d5d0b620f0fe3cc23c272021e9f23c') + +build() { + cd checkmate-${pkgver} + + ./configure --prefix=/usr + make +} + +package() { + cd checkmate-${pkgver} + + make prefix="${pkgdir}/usr" install +} |