Advertisement
Guest User

Untitled

a guest
Jul 28th, 2019
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.36 KB | None | 0 0
  1. name=libindicator
  2. version=12.10.0
  3. release=1
  4. source=(https://launchpad.net/$name/12.10/$version/+download/$name-$version.tar.gz)
  5.  
  6. build() {
  7.  
  8.   cd $name-$version
  9.  
  10.   export CFLAGS+="-Wno-error=deprecated-declarations"
  11.   autoreconf -vfi
  12.  
  13.   ./configure \
  14.     --prefix=/usr \
  15.     --libexecdir=/usr/lib/$name \
  16.     --with-gtk=3 \
  17.     --disable-static
  18.  
  19.   make
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement