From a9627b7b041da89697cce0433d6894277061d838 Mon Sep 17 00:00:00 2001 From: Fabian Date: Tue, 9 Feb 2021 21:32:25 +0100 Subject: [PATCH] initial --- PKGBUILD | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 PKGBUILD diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 0000000..73e66ac --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,22 @@ +# Maintainer: Fabian +pkgname=music_tagmove +pkgver=1.0 +pkgrel=1 +pkgdesc="Tool to automatically split and move music files based on tags" +arch=('any') +url="https://git.ldsoft.dev/fabs/music_tagmove.git" +license=('GPL') +depends=('cuetools-fabs' 'flac' 'shntool' 'bbe' 'id3v2-git' ) +conflicts=('cuetools') + +source=("$pkgname"::"git+https://git.ldsoft.dev/fabs/music_tagmove.git") +sha512sums=('SKIP') + +package() { + cd "$srcdir/$pkgname" + mkdir -p "$pkgdir/usr/bin" + mkdir -p "$pkgdir/usr/lib" + install -m755 ./music_tagmove "$pkgdir/usr/bin/music_tagmove" + install -m644 ./music_tagmove_lib "$pkgdir/usr/lib/music_tagmove_lib" +} +