Initial upload: wlay-git r20.4e30475-1

This commit is contained in:
Cedric Girard 2019-06-07 14:45:45 +02:00
parent 18a0988453
commit 1b40c4bc50
Signed by: X-dark
GPG Key ID: E7D0E125DB9519E4
2 changed files with 69 additions and 0 deletions

24
wlay-git/.SRCINFO Normal file
View File

@ -0,0 +1,24 @@
pkgbase = wlay-git
pkgdesc = Graphical output management for Wayland
pkgver = r20.4e30475
pkgrel = 1
url = https://github.com/atx/wlay
arch = i686
arch = x86_64
license = MIT
makedepends = git
makedepends = cmake
makedepends = extra-cmake-modules
makedepends = wayland
makedepends = glfw-wayland
makedepends = glew-wayland
depends = wayland
depends = glfw-wayland
depends = glew-wayland
provides = wlay
conflicts = wlay
source = wlay::git+https://github.com/atx/wlay.git
sha256sums = SKIP
pkgname = wlay-git

45
wlay-git/PKGBUILD Normal file
View File

@ -0,0 +1,45 @@
# Maintainer: Cedric Girard <girard.cedric@gmail.com>
pkgname=wlay-git
pkgver=r20.4e30475
pkgrel=1
pkgdesc="Graphical output management for Wayland"
arch=('i686' 'x86_64')
url="https://github.com/atx/wlay"
license=('MIT')
makedepends=('git' 'cmake' 'extra-cmake-modules' 'wayland' 'glfw-wayland' 'glew-wayland')
depends=('wayland' 'glfw-wayland' 'glew-wayland')
provides=('wlay')
conflicts=('wlay')
source=('wlay::git+https://github.com/atx/wlay.git')
sha256sums=('SKIP')
pkgver() {
cd "$srcdir"/wlay
( set -o pipefail
git describe --long 2>/dev/null | sed 's/\([^-]*-g\)/r\1/;s/-/./g' ||
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
)
}
prepare(){
cd "$srcdir"/wlay
git submodule init
git submodule update
}
build() {
cd "$srcdir"/wlay
cmake . \
-DCMAKE_INSTALL_PREFIX=/usr
make
}
package() {
cd "$srcdir"/wlay
make DESTDIR="$pkgdir/" install
install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
}
# vim:set ts=2 sw=2 et: