summaryrefslogtreecommitdiff
path: root/libnotify/Pkgfile
blob: b98bc20e4de82c2a4a4dafe8b7d247ed84eb51f0 (plain)
    1 # Description: Desktop notification library
    2 # URL: https://developer.gnome.org/libnotify/
    3 # Maintainer: Danny Rawlins, crux at romster dot me
    4 # Depends on: gtk3
    5 
    6 name=libnotify
    7 version=0.7.12
    8 release=1
    9 source=(https://ftp.gnome.org/pub/GNOME/sources/$name/${version%.*}/$name-$version.tar.xz)
   10 
   11 build() {
   12 	meson $name-$version build \
   13 		--prefix /usr \
   14 		--wrap-mode nodownload \
   15 		-D b_lto=true \
   16 		-D b_pie=true \
   17 		-Dtests=false \
   18 		-Dintrospection=auto \
   19 		-Dman=false \
   20 		-Dgtk_doc=false \
   21 		-Ddocbook_docs=disabled
   22 
   23 	ninja -C build -j ${JOBS-1}
   24 	DESTDIR=$PKG meson install -C build
   25 }

Generated by cgit