22 lines
628 B
Bash
22 lines
628 B
Bash
|
# Maintainer: Eric Renfro <psi-jack@linux-help.org>
|
||
|
|
||
|
pkgname=xfce-session-systemd
|
||
|
pkgdesc='systemd Integration for xfce-session'
|
||
|
pkgver=1.0.0
|
||
|
pkgrel=1
|
||
|
arch=('any')
|
||
|
url="https://git.linux-help.org/infusix/$pkgname"
|
||
|
license=('GPL')
|
||
|
makedepends=('coreutils')
|
||
|
source=("$pkgname-$pkgver.tar.gz::$url/-/archive/$pkgver/$pkgname-$pkgver.tar.gz")
|
||
|
sha256sums=('SKIP')
|
||
|
depends=('xfce4-session')
|
||
|
install=$pkgname.install
|
||
|
|
||
|
package() {
|
||
|
install -d $pkgdir/usr/lib/xfce4/session
|
||
|
install -d $pkfdir/etc/xdg/autostart
|
||
|
cp -f $srcdir/src/*.sh $pkgdir/usr/lib/xfce4/session/
|
||
|
cp -f $srcdir/src/*.desktop $pkgdir/etc/xdg/autostart/
|
||
|
}
|