Skip to content

Commit

Permalink
Add lingmo-statusbar
Browse files Browse the repository at this point in the history
  • Loading branch information
chun-awa committed Sep 21, 2024
1 parent 3b5fb6c commit 97a4c5a
Show file tree
Hide file tree
Showing 2 changed files with 48 additions and 0 deletions.
17 changes: 17 additions & 0 deletions lingmo-statusbar/.SRCINFO
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
pkgbase = lingmo-statusbar
pkgdesc = The status bar for LingmoOS.
pkgver = 2.0.0
pkgrel = 1
url = https://lingmo.org
arch = x86_64
license = GPL
makedepends = extra-cmake-modules
depends = kwindowsystem5
depends = qt5-base
depends = qt5-x11extras
depends = qt5-quickcontrols2
depends = qt5-tools
source = https://github.com/LingmoOS/lingmo-statusbar/archive/refs/tags/2.0.0.tar.gz
sha256sums = 06655741c454cee4728c2cf3e34ca76678eed4af86a620945767de970f0d89ca

pkgname = lingmo-statusbar
31 changes: 31 additions & 0 deletions lingmo-statusbar/PKGBUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# Maintainer: chun-awa <[email protected]>
# Maintainer: Intro <[email protected]>
pkgname=lingmo-statusbar
arch=("x86_64")
depends=(
"kwindowsystem5" "qt5-base" "qt5-x11extras" "qt5-quickcontrols2"
"qt5-tools"
)
makedepends=("extra-cmake-modules")
pkgdesc="The status bar for LingmoOS."
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=('06655741c454cee4728c2cf3e34ca76678eed4af86a620945767de970f0d89ca')

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 97a4c5a

Please sign in to comment.