strawberry-audio-player-win.../dist/unix/PKGBUILD.in

57 lines
1004 B
Bash
Raw Normal View History

2018-11-11 03:37:14 +01:00
# Maintainer: Jonas Kvinge <jonas@jkvinge.net>
pkgname=strawberry
pkgver=@STRAWBERRY_VERSION_PAC_V@
pkgrel=@STRAWBERRY_VERSION_PAC_R@
pkgdesc="A music player aimed at audio enthusiasts and music collectors"
arch=(x86_64)
2019-09-24 00:06:37 +02:00
url="https://www.strawberrymusicplayer.org/"
2018-11-11 03:37:14 +01:00
license=(GPL3)
2019-02-23 01:14:36 +01:00
makedepends=(git cmake make gcc boost gettext qt5-tools)
2018-11-11 03:37:14 +01:00
depends=(
desktop-file-utils
hicolor-icon-theme
2019-04-16 17:48:11 +02:00
gnutls
2018-11-11 03:37:14 +01:00
udisks2
protobuf
qt5-base
qt5-x11extras
sqlite3
alsa-lib
2019-01-03 02:44:52 +01:00
libpulse
2018-11-11 03:37:14 +01:00
dbus
taglib
gstreamer
gst-plugins-base
gst-plugins-good
vlc
chromaprint
2019-01-03 02:44:52 +01:00
libgpod
libcdio
libmtp
2019-04-18 18:28:37 +02:00
fftw
2018-11-11 03:37:14 +01:00
)
optdepends=(
2019-01-03 02:44:52 +01:00
gst-plugins-bad
gst-plugins-ugly
gst-libav
2018-11-11 03:37:14 +01:00
)
provides=(strawberry)
conflicts=(strawberry)
source=("strawberry-@STRAWBERRY_VERSION_PACKAGE@.tar.xz")
2018-11-11 03:37:14 +01:00
sha256sums=('SKIP')
prepare() {
mkdir -p build
2018-11-11 03:37:14 +01:00
}
build() {
cd build
2020-06-26 23:30:30 +02:00
cmake ../${pkgname}-@STRAWBERRY_VERSION_PACKAGE@ -DCMAKE_INSTALL_PREFIX=/usr
make -j$(nproc)
2018-11-11 03:37:14 +01:00
}
package() {
cd build
2018-11-11 03:37:14 +01:00
make DESTDIR="${pkgdir}" install
}