Initial commit

This commit is contained in:
Drew DeVault 2015-08-16 10:17:29 -04:00
commit fe5a498965
3 changed files with 48 additions and 0 deletions

16
.SRCINFO Normal file
View File

@ -0,0 +1,16 @@
pkgbase = sway-git
pkgdesc = i3 compatible window manager for Wayland
pkgver = 1.0.0
pkgrel = 1
url = https://github.com/SirCmpwn/sway
arch = i386
arch = x86_64
license = MIT
makedepends = cmake
depends = wlc
optdepends = xorg-server-xwayland: running xorg windows under sway
source = sway::git+https://github.com/SirCmpwn/sway.git
sha1sums = SKIP
pkgname = sway-git

5
.gitignore vendored Normal file
View File

@ -0,0 +1,5 @@
*.tar.gz
*.tar.xz
src/
pkg/
sway/

27
PKGBUILD Normal file
View File

@ -0,0 +1,27 @@
# Maintainer: Drew DeVault <sir@cmpwn.com>
pkgname=sway-git
_pkgname=sway
pkgver=1.0.0
pkgrel=1
license=('MIT')
pkgdesc='i3 compatible window manager for Wayland'
makedepends=("cmake")
depends=("wlc")
optdepends=("xorg-server-xwayland: running xorg windows under sway")
arch=("i386" "x86_64")
url='https://github.com/SirCmpwn/sway'
source=("${pkgname%-*}::git+https://github.com/SirCmpwn/sway.git")
sha1sums=('SKIP')
build() {
cd "${srcdir}/${_pkgname}"
cmake . -DCMAKE_INSTALL_PREFIX=/usr
make
}
package() {
cd "${srcdir}/${_pkgname}"
DESTDIR="$pkgdir/" make install
}