First submission of package
This commit is contained in:
commit
c9a1b559c2
2 changed files with 46 additions and 0 deletions
14
.SRCINFO
Normal file
14
.SRCINFO
Normal file
|
@ -0,0 +1,14 @@
|
|||
pkgbase = sierra-breeze-enhanced-decoration-kwin
|
||||
pkgdesc = A fork of BreezeEnhanced to make it (arguably) more minimalistic and informative
|
||||
pkgver = 1.3.1
|
||||
pkgrel = 1
|
||||
url = https://github.com/kupiqu/SierraBreezeEnhanced/
|
||||
arch = x86_64
|
||||
license = GPL3
|
||||
makedepends = cmake
|
||||
makedepends = extra-cmake-modules
|
||||
depends = kwin
|
||||
source = https://github.com/kupiqu/SierraBreezeEnhanced/archive/refs/tags/V1.3.1.tar.gz
|
||||
sha256sums = e507084f359ceb1fd11f4b1a54cbd350601d6cebae837765412da7b5d2744b8c
|
||||
|
||||
pkgname = sierra-breeze-enhanced-decoration-kwin
|
32
PKGBUILD
Normal file
32
PKGBUILD
Normal file
|
@ -0,0 +1,32 @@
|
|||
# Maintainer: Leo sk <sk.griffinix@gmail.com>
|
||||
|
||||
pkgname=sierra-breeze-enhanced-decoration-kwin
|
||||
_gitname=SierraBreezeEnhanced
|
||||
pkgver=1.3.1
|
||||
pkgrel=1
|
||||
pkgdesc="A fork of BreezeEnhanced to make it (arguably) more minimalistic and informative"
|
||||
arch=('x86_64')
|
||||
url="https://github.com/kupiqu/SierraBreezeEnhanced/"
|
||||
license=('GPL3')
|
||||
depends=('kwin')
|
||||
makedepends=('cmake' 'extra-cmake-modules')
|
||||
source=("${url}archive/refs/tags/V${pkgver}.tar.gz")
|
||||
sha256sums=('e507084f359ceb1fd11f4b1a54cbd350601d6cebae837765412da7b5d2744b8c')
|
||||
|
||||
build() {
|
||||
|
||||
cd "${srcdir}/${_gitname}-${pkgver}"
|
||||
|
||||
mkdir build && cd build
|
||||
cmake .. \
|
||||
-DCMAKE_INSTALL_PREFIX=/usr \
|
||||
-DCMAKE_BUILD_TYPE=Release \
|
||||
-DKDE_INSTALL_LIBDIR=lib \
|
||||
-DBUILD_TESTING=OFF \
|
||||
-DKDE_INSTALL_USE_QT_SYS_PATHS=ON
|
||||
|
||||
}
|
||||
|
||||
package() {
|
||||
make -C ${srcdir}/${_gitname}-${pkgver}/build DESTDIR="$pkgdir" install
|
||||
}
|
Loading…
Reference in a new issue