initializing pkgbuild and srcinfo
This commit is contained in:
commit
011864fad3
2 changed files with 60 additions and 0 deletions
27
.SRCINFO
Normal file
27
.SRCINFO
Normal file
|
@ -0,0 +1,27 @@
|
|||
pkgbase = wingpanel-monitor-git
|
||||
pkgdesc = Resources indicator for Wingpanel
|
||||
pkgver = 0.1.0.r25.gcac8a9e
|
||||
pkgrel = 1
|
||||
url = https://github.com/PlugaruT/wingpanel-monitor
|
||||
arch = x86_64
|
||||
groups = pantheon-unstable
|
||||
license = GPL3
|
||||
makedepends = git
|
||||
makedepends = granite
|
||||
makedepends = intltool
|
||||
makedepends = meson
|
||||
makedepends = vala
|
||||
makedepends = wingpanel
|
||||
depends = libgweather
|
||||
depends = glib2
|
||||
depends = glibc
|
||||
depends = gtk3
|
||||
depends = libgtop
|
||||
depends = libnotify
|
||||
depends = libwingpanel-2.0.so
|
||||
provides = wingpanel-monitor
|
||||
conflicts = wingpanel-monitor
|
||||
source = git+https://github.com/PlugaruT/wingpanel-monitor.git
|
||||
sha256sums = SKIP
|
||||
|
||||
pkgname = wingpanel-monitor-git
|
33
PKGBUILD
Normal file
33
PKGBUILD
Normal file
|
@ -0,0 +1,33 @@
|
|||
# Maintainer: RainbowZephyr <darkfeathers9@gmail.com>
|
||||
|
||||
pkgname=wingpanel-monitor-git
|
||||
pkgver=0.1.0.r25.gcac8a9e
|
||||
pkgrel=1
|
||||
pkgdesc='Resources indicator for Wingpanel'
|
||||
arch=('x86_64')
|
||||
url='https://github.com/PlugaruT/wingpanel-monitor'
|
||||
license=('GPL3')
|
||||
groups=('pantheon-unstable')
|
||||
depends=('libgweather' 'glib2' 'glibc' 'gtk3' lib{gtop,notify}
|
||||
'libwingpanel-2.0.so')
|
||||
makedepends=('git' 'granite' 'intltool' 'meson' 'vala' 'wingpanel')
|
||||
provides=('wingpanel-monitor')
|
||||
conflicts=('wingpanel-monitor')
|
||||
source=('git+https://github.com/PlugaruT/wingpanel-monitor.git')
|
||||
sha256sums=('SKIP')
|
||||
|
||||
pkgver() {
|
||||
cd wingpanel-monitor
|
||||
|
||||
git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
|
||||
}
|
||||
|
||||
build() {
|
||||
|
||||
arch-meson wingpanel-monitor build
|
||||
ninja -C build
|
||||
}
|
||||
|
||||
package() {
|
||||
DESTDIR="${pkgdir}" ninja -C build install
|
||||
}
|
Loading…
Reference in a new issue