Skip to content

Commit

Permalink
Add lingmo-gtk-themes
Browse files Browse the repository at this point in the history
  • Loading branch information
chun-awa committed Sep 21, 2024
1 parent 97a4c5a commit 2c486d4
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 0 deletions.
12 changes: 12 additions & 0 deletions lingmo-gtk-themes/.SRCINFO
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
pkgbase = lingmo-gtk-themes
pkgdesc = GTK themes for Lingmo OS
pkgver = 2.0.0
pkgrel = 1
url = https://lingmo.org
arch = x86_64
license = GPL
makedepends = extra-cmake-modules
source = https://github.com/LingmoOS/lingmo-gtk-themes/archive/refs/tags/2.0.0.tar.gz
sha256sums = 66b55621337316e30b708dc8284d47d2943c9e00bdde7b1b4f2704012f17583e

pkgname = lingmo-gtk-themes
28 changes: 28 additions & 0 deletions lingmo-gtk-themes/PKGBUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# Maintainer: Intro <[email protected]>
pkgname=lingmo-gtk-themes
arch=("x86_64")
depends=()
makedepends=("extra-cmake-modules")
pkgdesc="GTK themes for Lingmo OS"
pkgrel=1
pkgver=2.0.0

url="https://lingmo.org"
license=("GPL")
source=("https://github.com/LingmoOS/${pkgname}/archive/refs/tags/${pkgver}.tar.gz")
sha256sums=('66b55621337316e30b708dc8284d47d2943c9e00bdde7b1b4f2704012f17583e')

prepare() {
cd "$srcdir/${pkgname}-${pkgver}"
mkdir -p build
}

build() {
cd "$srcdir/${pkgname}-${pkgver}/build"
cmake -DCMAKE_INSTALL_PREFIX=/usr ..
make
}
package() {
cd $pkgname-$pkgver/build
make DESTDIR="$pkgdir" install
}

0 comments on commit 2c486d4

Please sign in to comment.