mirror of
https://github.com/mac-a-r0ni/crux-xfce4.git
synced 2025-01-23 07:02:20 +01:00
33 lines
594 B
Plaintext
33 lines
594 B
Plaintext
# Description: Simple bridge between colord and x
|
|
# URL: https://github.com/agalakhov/xiccd
|
|
# Maintainer: jolupa, jlpavon at me dot com
|
|
# Depends on: colord xorg-libxrandr
|
|
|
|
name=xiccd
|
|
version=0.3.0
|
|
release=4
|
|
source=(https://github.com/agalakhov/$name/archive/v$version.tar.gz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
aclocal
|
|
autoconf
|
|
automake \
|
|
--add-missing \
|
|
--foreign \
|
|
--force \
|
|
--copy
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--sbindir=/sbin \
|
|
--sysconfdir=/etc \
|
|
--libexecdir=/usr/lib/$name \
|
|
--disable-dependency-tracking
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
}
|