diff options
author | davidovski <david@davidovski.xyz> | 2022-04-20 22:40:49 +0000 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2022-04-20 22:40:49 +0000 |
commit | 1084afc3c4d9c83e61620de60ba59a4393a33cb0 (patch) | |
tree | 17b2e37df0f1d61a83566fda5f707faffab54628 /repo/x11 | |
parent | c35d083dc525e223b085ec00e6863ea6eafb003c (diff) |
fixed create to work within env
Diffstat (limited to 'repo/x11')
-rw-r--r-- | repo/x11/harfbuzz.xibuild | 4 | ||||
-rw-r--r-- | repo/x11/libsm.xibuild | 2 | ||||
-rw-r--r-- | repo/x11/libxaw.xibuild | 2 | ||||
-rw-r--r-- | repo/x11/libxmu.xibuild | 2 | ||||
-rw-r--r-- | repo/x11/libxt.xibuild | 2 | ||||
-rw-r--r-- | repo/x11/pango.xibuild | 2 | ||||
-rw-r--r-- | repo/x11/sxhkd.xibuild | 4 | ||||
-rw-r--r-- | repo/x11/xdg-utils.xibuild | 2 |
8 files changed, 10 insertions, 10 deletions
diff --git a/repo/x11/harfbuzz.xibuild b/repo/x11/harfbuzz.xibuild index 7164985..aa876b3 100644 --- a/repo/x11/harfbuzz.xibuild +++ b/repo/x11/harfbuzz.xibuild @@ -3,8 +3,8 @@ NAME="harfbuzz" DESC="Text shaping library" -MAKEDEPS="meson ninja " -DEPS="freetype2 glib graphite musl " +MAKEDEPS="meson ninja gtk-doc python-pygments" +DEPS="freetype2 glib graphite musl" PKG_VER=4.2.0 SOURCE="https://github.com/harfbuzz/harfbuzz/archive/$PKG_VER.tar.gz" diff --git a/repo/x11/libsm.xibuild b/repo/x11/libsm.xibuild index 0a7bbdc..9e132d9 100644 --- a/repo/x11/libsm.xibuild +++ b/repo/x11/libsm.xibuild @@ -1,7 +1,7 @@ #!/bin/sh MAKEDEPS="make asciidoc xmlto lynx" -DEPS="fontconfig libxcb elogind" +DEPS="fontconfig libxcb elogind libice" PKG_VER=1.2.3 SOURCE=https://www.x.org/pub/individual/lib/libSM-$PKG_VER.tar.bz2 diff --git a/repo/x11/libxaw.xibuild b/repo/x11/libxaw.xibuild index 2532f54..e7e4788 100644 --- a/repo/x11/libxaw.xibuild +++ b/repo/x11/libxaw.xibuild @@ -1,7 +1,7 @@ #!/bin/sh MAKEDEPS="make asciidoc xmlto lynx" -DEPS="fontconfig libxcb elogind" +DEPS="fontconfig libxcb elogind libxmu libxt libxpm" PKG_VER=1.0.14 SOURCE=https://www.x.org/pub/individual/lib/libXaw-$PKG_VER.tar.bz2 diff --git a/repo/x11/libxmu.xibuild b/repo/x11/libxmu.xibuild index 159531c..5127ccc 100644 --- a/repo/x11/libxmu.xibuild +++ b/repo/x11/libxmu.xibuild @@ -1,7 +1,7 @@ #!/bin/sh MAKEDEPS="make asciidoc xmlto lynx" -DEPS="fontconfig libxcb elogind" +DEPS="fontconfig libxcb elogind libxt" PKG_VER=1.1.3 SOURCE=https://www.x.org/pub/individual/lib/libXmu-$PKG_VER.tar.bz2 diff --git a/repo/x11/libxt.xibuild b/repo/x11/libxt.xibuild index d801b21..293683d 100644 --- a/repo/x11/libxt.xibuild +++ b/repo/x11/libxt.xibuild @@ -1,7 +1,7 @@ #!/bin/sh MAKEDEPS="make asciidoc xmlto lynx" -DEPS="fontconfig libxcb elogind" +DEPS="fontconfig libxcb elogind libsm libice" PKG_VER=1.2.1 SOURCE=https://www.x.org/pub/individual/lib/libXt-$PKG_VER.tar.bz2 diff --git a/repo/x11/pango.xibuild b/repo/x11/pango.xibuild index 2515487..03458aa 100644 --- a/repo/x11/pango.xibuild +++ b/repo/x11/pango.xibuild @@ -4,7 +4,7 @@ NAME="pango" DESC="library for layout and rendering of text" MAKEDEPS="meson ninja" -DEPS="sbase cairo fontconfig freetype2 glib libx11 libxft libxrender musl" +DEPS="sbase cairo fontconfig freetype2 glib libx11 libxft libxrender musl fribidi harfbuzz" PKG_VER=1.50.5 SOURCE="https://download.gnome.org/sources/pango/${PKG_VER%.*}/pango-$PKG_VER.tar.xz" diff --git a/repo/x11/sxhkd.xibuild b/repo/x11/sxhkd.xibuild index b8e4d61..a18247a 100644 --- a/repo/x11/sxhkd.xibuild +++ b/repo/x11/sxhkd.xibuild @@ -9,9 +9,9 @@ SOURCE=https://github.com/baskerville/sxhkd/archive/refs/tags/$PKG_VER.tar.gz DESC="Simple X HotKey Daemon; reacts to input events by executing commands" build () { - make + make PREFIX=/usr } package () { - make DESTDIR=$PKG_DEST install + make PREFIX=/usr DESTDIR=$PKG_DEST install } diff --git a/repo/x11/xdg-utils.xibuild b/repo/x11/xdg-utils.xibuild index d3fb5ee..ad51ab4 100644 --- a/repo/x11/xdg-utils.xibuild +++ b/repo/x11/xdg-utils.xibuild @@ -3,7 +3,7 @@ NAME="xdg-utils" DESC="Basic desktop integration functions" -MAKEDEPS="make " +MAKEDEPS="make docbook-dtd libxml2 libxslt xmlto lynx" DEPS="file xprop xset " PKG_VER=1.1.3 |