Add -DCMAKE_INSTALL_SYSCONFDIR=/etc

This commit is contained in:
Drew DeVault 2015-12-27 11:08:23 -05:00
parent b96c926afa
commit d6e021e134
2 changed files with 14 additions and 12 deletions

View File

@ -1,8 +1,8 @@
# Generated by mksrcinfo v8 # Generated by mksrcinfo v8
# Tue Dec 8 12:11:59 UTC 2015 # Sun Dec 27 16:08:19 UTC 2015
pkgbase = sway-git pkgbase = sway-git
pkgdesc = i3 compatible window manager for Wayland pkgdesc = i3 compatible window manager for Wayland
pkgver = r896.155f5d2 pkgver = r1138.82aca85
pkgrel = 1 pkgrel = 1
url = https://github.com/SirCmpwn/sway url = https://github.com/SirCmpwn/sway
arch = i686 arch = i686
@ -19,10 +19,11 @@ pkgbase = sway-git
depends = cairo depends = cairo
depends = wayland depends = wayland
depends = gdk-pixbuf2 depends = gdk-pixbuf2
optdepends = rxvt-unicode: default terminal emulator optdepends = rxvt-unicode: Default terminal emulator.
optdepends = dmenu: default for launching applications optdepends = dmenu: Default for launching applications.
optdepends = imagemagick: for taking screenshots optdepends = imagemagick: For taking screenshots.
optdepends = ffmpeg: for recording screencasts optdepends = ffmpeg: For recording screencasts.
optdepends = i3status: To display system information with a bar.
source = sway::git+https://github.com/SirCmpwn/sway.git source = sway::git+https://github.com/SirCmpwn/sway.git
sha1sums = SKIP sha1sums = SKIP

View File

@ -1,7 +1,7 @@
# Maintainer: Drew DeVault <sir@cmpwn.com> # Maintainer: Drew DeVault <sir@cmpwn.com>
pkgname=sway-git pkgname=sway-git
_pkgname=sway _pkgname=sway
pkgver=r896.155f5d2 pkgver=r1138.82aca85
pkgrel=1 pkgrel=1
license=('MIT') license=('MIT')
pkgdesc='i3 compatible window manager for Wayland' pkgdesc='i3 compatible window manager for Wayland'
@ -13,10 +13,11 @@ depends=(
"wayland" "gdk-pixbuf2" "wayland" "gdk-pixbuf2"
) )
optdepends=( optdepends=(
"rxvt-unicode: default terminal emulator" "rxvt-unicode: Default terminal emulator."
"dmenu: default for launching applications" "dmenu: Default for launching applications."
"imagemagick: for taking screenshots" "imagemagick: For taking screenshots."
"ffmpeg: for recording screencasts" "ffmpeg: For recording screencasts."
"i3status: To display system information with a bar."
) )
arch=("i686" "x86_64") arch=("i686" "x86_64")
url='https://github.com/SirCmpwn/sway' url='https://github.com/SirCmpwn/sway'
@ -31,7 +32,7 @@ pkgver() {
build() { build() {
cd "${srcdir}/${_pkgname}" cd "${srcdir}/${_pkgname}"
cmake . -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr cmake . -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_SYSCONFDIR=/etc -DCMAKE_INSTALL_PREFIX=/usr
make make
} }