blob: ad45afc21b905b8433ce9fd3397dd35a3ba8f469 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
# Contributor: David Demelier <markand@malikania.fr>
# Maintainer: David Demelier <markand@malikania.fr>
pkgname="easytag"
pkgver=2.4.3
pkgrel=0
pkgdesc="audio file metadata editor"
url="https://wiki.gnome.org/Apps/EasyTAG"
arch="all"
license="GPL-2.0-only AND GPL-3.0-only"
makedepends="
flac-dev
desktop-file-utils
gtk+3.0-dev
intltool
itstool
id3lib-dev
libid3tag-dev
libogg-dev
libvorbis-dev
speex-dev
opus-dev
opusfile-dev"
subpackages="$pkgname-doc $pkgname-lang"
source="https://download.gnome.org/sources/easytag/${pkgver%.*}/easytag-$pkgver.tar.xz"
build() {
./configure --prefix=/usr
make
}
check() {
make check
}
package() {
make DESTDIR="$pkgdir" install
}
sha512sums="ef596341772ce7da3b7feec2c82a20ca29d25c2496074c469be5b8dd75d2b2718e689310e0d61de53bc29a4f54ce9f853a336e1a35076046fd107afd28699087 easytag-2.4.3.tar.xz"
|