22 lines
602 B
Plaintext
22 lines
602 B
Plaintext
|
# Description: Simple MP3 player client for MTP based devices
|
||
|
# URL: https://gmtp.sourceforge.io/
|
||
|
# Maintainer: Alexandr Savca, alexandrsavca89 at gmail dot com
|
||
|
# Depends on: desktop-file-utils flac gtk3 libid3tag libmtp libvorbis xorg-libxcomposite xorg-libxcursor xorg-libxinerama
|
||
|
|
||
|
name=gmtp
|
||
|
version=1.3.11
|
||
|
release=1
|
||
|
source=(http://sourceforge.net/projects/gmtp/files/gMTP-$version/gmtp-$version.tar.gz)
|
||
|
|
||
|
build() {
|
||
|
cd $name-$version
|
||
|
|
||
|
CFLAGS+=' -fcommon' ./configure \
|
||
|
--prefix=/usr \
|
||
|
--with-gtk3 \
|
||
|
--disable-nls
|
||
|
|
||
|
make
|
||
|
make DESTDIR=$PKG install
|
||
|
}
|