summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: ca42531a6e7206d9be90c7f9d9bb1b5935dc6322 (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
# Maintainer: Feresey <p.milko1999@yandex.ru>
pkgname=exo-player
arch=(x86_64 i686)
pkgdesc="eXo music player based on moc"
pkgver=8.0
pkgrel=2
source=(git://github.com/Feresey/exo)
url=https://github.com/Feresey/exo
sha1sums=('SKIP')
license=(GPL)

makedepends=(gcc cmake)
depends=(liblastfm-qt5
        qt5-base
        moc
        python3
        python-notify2)

build() {
    cd $srcdir
    cd exo
    [[ ! -d build ]] && mkdir build
    cd build
    cmake .. -DCMAKE_INSTALL_PREFIX=$pkgdir/usr
    make
}

package() {
    cd $srcdir/exo/build
    make install
}