Update pegasus-fe-git PKGBUILD
Signed-off-by: Severin Kaderli <severin@kaderli.dev>
This commit is contained in:
parent
c3a3ea6a05
commit
5b171763de
2 changed files with 20 additions and 9 deletions
|
@ -1,7 +1,7 @@
|
||||||
pkgbase = pegasus-fe-git
|
pkgbase = pegasus-fe-git
|
||||||
pkgdesc = A cross platform, customizable graphical frontend for launching emulators and managing your game collection.
|
pkgdesc = A cross platform, customizable graphical frontend for launching emulators and managing your game collection.
|
||||||
pkgver = alpha11.r100.ga1f400c
|
pkgver = alpha12.r12.gca00bb4
|
||||||
pkgrel = 1
|
pkgrel = 2
|
||||||
url = https://pegasus-frontend.org/
|
url = https://pegasus-frontend.org/
|
||||||
arch = i686
|
arch = i686
|
||||||
arch = x86_64
|
arch = x86_64
|
||||||
|
@ -9,10 +9,13 @@ pkgbase = pegasus-fe-git
|
||||||
makedepends = git
|
makedepends = git
|
||||||
makedepends = qt5-tools
|
makedepends = qt5-tools
|
||||||
depends = qt-gstreamer
|
depends = qt-gstreamer
|
||||||
|
depends = fontconfig
|
||||||
|
depends = openssl-1.0
|
||||||
depends = qt5-svg
|
depends = qt5-svg
|
||||||
depends = qt5-multimedia
|
depends = qt5-multimedia
|
||||||
depends = qt5-gamepad
|
depends = qt5-gamepad
|
||||||
depends = qt5-graphicaleffects
|
depends = qt5-graphicaleffects
|
||||||
|
optdepends = polkit
|
||||||
provides = pegasus-fe
|
provides = pegasus-fe
|
||||||
conflicts = pegasus-fe
|
conflicts = pegasus-fe
|
||||||
source = pegasus-fe::git+https://github.com/mmatyas/pegasus-frontend.git
|
source = pegasus-fe::git+https://github.com/mmatyas/pegasus-frontend.git
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
# Maintainer: Severin Kaderli <severin.kaderli@gmail.com>
|
# Maintainer: Severin Kaderli <severin.kaderli@gmail.com>
|
||||||
_pkgname=pegasus-fe
|
_pkgname=pegasus-fe
|
||||||
pkgname=${_pkgname}-git
|
pkgname=${_pkgname}-git
|
||||||
pkgver=alpha11.r100.ga1f400c
|
pkgver=alpha12.r12.gca00bb4
|
||||||
pkgrel=1
|
pkgrel=2
|
||||||
pkgdesc="A cross platform, customizable graphical frontend for launching emulators and managing your game collection."
|
pkgdesc="A cross platform, customizable graphical frontend for launching emulators and managing your game collection."
|
||||||
arch=('i686' 'x86_64')
|
arch=('i686' 'x86_64')
|
||||||
url="https://pegasus-frontend.org/"
|
url="https://pegasus-frontend.org/"
|
||||||
|
@ -13,11 +13,16 @@ makedepends=(
|
||||||
)
|
)
|
||||||
depends=(
|
depends=(
|
||||||
'qt-gstreamer'
|
'qt-gstreamer'
|
||||||
|
'fontconfig'
|
||||||
|
'openssl-1.0'
|
||||||
'qt5-svg'
|
'qt5-svg'
|
||||||
'qt5-multimedia'
|
'qt5-multimedia'
|
||||||
'qt5-gamepad'
|
'qt5-gamepad'
|
||||||
'qt5-graphicaleffects'
|
'qt5-graphicaleffects'
|
||||||
)
|
)
|
||||||
|
optdepends=(
|
||||||
|
'polkit'
|
||||||
|
)
|
||||||
provides=('pegasus-fe')
|
provides=('pegasus-fe')
|
||||||
conflicts=('pegasus-fe')
|
conflicts=('pegasus-fe')
|
||||||
source=(
|
source=(
|
||||||
|
@ -50,13 +55,16 @@ prepare() {
|
||||||
build() {
|
build() {
|
||||||
cd "${srcdir}/${_pkgname}"
|
cd "${srcdir}/${_pkgname}"
|
||||||
mkdir -p ./build && cd build
|
mkdir -p ./build && cd build
|
||||||
qmake ..
|
qmake .. \
|
||||||
|
INSTALL_BINDIR=/usr/bin \
|
||||||
|
INSTALL_ICONDIR=/usr/share/pixmaps \
|
||||||
|
INSTALL_DESKTOPDIR=/usr/share/applications
|
||||||
make
|
make
|
||||||
}
|
}
|
||||||
|
|
||||||
package() {
|
package() {
|
||||||
cd "${srcdir}/${_pkgname}"
|
cd "${srcdir}/${_pkgname}/build"
|
||||||
install -Dm755 "build/src/app/${_pkgname}" "${pkgdir}/usr/bin/${_pkgname}"
|
make INSTALL_ROOT="${pkgdir}/" install
|
||||||
install -Dm644 "README.md" "${pkgdir}/usr/share/doc/${pkgname}/README.md"
|
install -Dm644 "../README.md" "${pkgdir}/usr/share/doc/${pkgname}/README.md"
|
||||||
install -Dm644 "LICENSE.md" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
|
install -Dm644 "../LICENSE.md" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue