Release v0.1.2
This commit is contained in:
commit
912d02b7ad
2 changed files with 51 additions and 0 deletions
25
.SRCINFO
Normal file
25
.SRCINFO
Normal file
|
@ -0,0 +1,25 @@
|
|||
pkgbase = plaincontrolcenter
|
||||
pkgdesc = plainDE control center
|
||||
pkgver = 0.1.2
|
||||
pkgrel = 1
|
||||
url = https://plainde.org
|
||||
arch = x86_64
|
||||
arch = i686
|
||||
arch = arm
|
||||
arch = armv6h
|
||||
arch = armv7h
|
||||
arch = aarch64
|
||||
license = GPL3
|
||||
makedepends = git
|
||||
depends = qt6-base
|
||||
depends = noto-fonts-emoji
|
||||
depends = polkit
|
||||
depends = ttf-opensans
|
||||
depends = make
|
||||
depends = alsa-utils
|
||||
depends = kwindowsystem
|
||||
depends = plainpanel
|
||||
source = git+https://github.com/plainDE/plainControlCenter.git#tag=v0.1.2
|
||||
sha256sums = SKIP
|
||||
|
||||
pkgname = plaincontrolcenter
|
26
PKGBUILD
Normal file
26
PKGBUILD
Normal file
|
@ -0,0 +1,26 @@
|
|||
# Maintainer: Ivan 'ivabus' Bushchik ivabus@ivabus.dev -> https://github.com/ivabus
|
||||
|
||||
pkgname=plaincontrolcenter
|
||||
pkgver=0.1.2
|
||||
pkgrel=1
|
||||
pkgdesc="plainDE control center"
|
||||
arch=(x86_64 i686 arm armv6h armv7h aarch64)
|
||||
url="https://plainde.org"
|
||||
license=(GPL3)
|
||||
depends=(qt6-base noto-fonts-emoji polkit ttf-opensans make alsa-utils kwindowsystem plainpanel)
|
||||
makedepends=(git)
|
||||
source=("git+https://github.com/plainDE/plainControlCenter.git#tag=v${pkgver}")
|
||||
sha256sums=('SKIP')
|
||||
|
||||
build() {
|
||||
cd $srcdir/plainControlCenter
|
||||
qmake
|
||||
make
|
||||
}
|
||||
|
||||
package() {
|
||||
mkdir -p $pkgdir/usr/share/plainDE/ $pkgdir/usr/bin
|
||||
mv $srcdir/plainControlCenter/plainControlCenter $pkgdir/usr/share/plainDE/
|
||||
ln -s $pkgdir/usr/share/plainDE/plainControlCenter $pkgdir/usr/bin/plainControlCenter
|
||||
}
|
||||
|
Loading…
Reference in a new issue