diff options
author | Aaron Ball <nullspoon@oper.io> | 2021-06-27 18:25:00 -0600 |
---|---|---|
committer | Aaron Ball <nullspoon@oper.io> | 2021-06-27 18:29:03 -0600 |
commit | 7b934f6cb81fcc925dbdf8a42fc897460e517569 (patch) | |
tree | 06abc671b67eb990864b491847e7f2ca22205dff | |
parent | 4ea2db9d81c02c6883bcfc9ee9560eb32f461a3f (diff) | |
download | crux-ports-arm64-7b934f6cb81fcc925dbdf8a42fc897460e517569.tar.gz crux-ports-arm64-7b934f6cb81fcc925dbdf8a42fc897460e517569.tar.xz |
libid3tag:initial commit
This is pulled from opt verbatim, except it adds the
--build=aarch64-unknown-linux-gnueabi switch to the configure stage.
-rw-r--r-- | libid3tag/.footprint | 11 | ||||
-rw-r--r-- | libid3tag/.md5sum | 2 | ||||
-rw-r--r-- | libid3tag/.signature | 6 | ||||
-rw-r--r-- | libid3tag/Pkgfile | 21 |
4 files changed, 40 insertions, 0 deletions
diff --git a/libid3tag/.footprint b/libid3tag/.footprint new file mode 100644 index 0000000..e6508af --- /dev/null +++ b/libid3tag/.footprint @@ -0,0 +1,11 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/include/ +-rw-r--r-- root/root usr/include/id3tag.h +drwxr-xr-x root/root usr/lib/ +-rw-r--r-- root/root usr/lib/libid3tag.a +-rwxr-xr-x root/root usr/lib/libid3tag.la +lrwxrwxrwx root/root usr/lib/libid3tag.so -> libid3tag.so.0.3.0 +lrwxrwxrwx root/root usr/lib/libid3tag.so.0 -> libid3tag.so.0.3.0 +-rwxr-xr-x root/root usr/lib/libid3tag.so.0.3.0 +drwxr-xr-x root/root usr/lib/pkgconfig/ +-rw-r--r-- root/root usr/lib/pkgconfig/id3tag.pc diff --git a/libid3tag/.md5sum b/libid3tag/.md5sum new file mode 100644 index 0000000..be4e3f4 --- /dev/null +++ b/libid3tag/.md5sum @@ -0,0 +1,2 @@ +18f4b82a72fd355d0d8d5308a55fb5f1 id3tag.pc +e5808ad997ba32c498803822078748c3 libid3tag-0.15.1b.tar.gz diff --git a/libid3tag/.signature b/libid3tag/.signature new file mode 100644 index 0000000..fc094d3 --- /dev/null +++ b/libid3tag/.signature @@ -0,0 +1,6 @@ +untrusted comment: verify with /etc/ports/nullspoon-arm64.pub +RWRGQ5Uo08Y6aEdeEAMqkuinKnbXTTMjoesD/P9lGyTd2llLhkyWLYjLC6g6FYRNcvykcvRHK76c+eKXdDG3LnY3/h5msrQEqgg= +SHA256 (Pkgfile) = b4316f5eff91d1efdb52ddefd72d3dabc21233aa1cded1be2a85c0df1c484958 +SHA256 (.footprint) = 9655ab362190dc086f05c29d5b1695fca93a66f0e22782a68ffd8c199f47ff14 +SHA256 (libid3tag-0.15.1b.tar.gz) = 63da4f6e7997278f8a3fef4c6a372d342f705051d1eeb6a46a86b03610e26151 +SHA256 (id3tag.pc) = 1c04ccd074290031a6fab00b3cc7aef9afc06fbce6959b2a2098dc3f77df707e diff --git a/libid3tag/Pkgfile b/libid3tag/Pkgfile new file mode 100644 index 0000000..d191a10 --- /dev/null +++ b/libid3tag/Pkgfile @@ -0,0 +1,21 @@ +# Description: ID3 tag manipulation library (modified from opt) +# URL: https://www.mars.org/home/rob/proj/mpeg/ +# Maintainer: Tim Biermann, tbier at posteo dot de / Aaron Ball, nullspoon at oper dot io +# Depends on: zlib + +name=libid3tag +version=0.15.1b +release=1 +source=(https://download.sourceforge.net/mad/${name}-${version}.tar.gz + id3tag.pc) + +build() { + mkdir -p $PKG/usr/lib/pkgconfig/ + sed "s/#version#/$version/" id3tag.pc > $PKG/usr/lib/pkgconfig/id3tag.pc + + cd $name-$version + + ./configure --prefix=/usr --build=aarch64-unknown-linux-gnueabi + make + make DESTDIR=$PKG install +} |