Remove -git pkgs that have stable pkgs (2/2).
If you need them, maintain them yourself in your local repo.
This commit is contained in:
parent
57ab4b42bd
commit
c7cdc5afd6
|
@ -1,25 +0,0 @@
|
|||
# Template file for 'bspwm-git'
|
||||
pkgname=bspwm-git
|
||||
version=20140920
|
||||
revision=1
|
||||
build_style=gnu-makefile
|
||||
hostmakedepends="git"
|
||||
makedepends="libxcb-devel xcb-util-devel xcb-util-wm-devel"
|
||||
short_desc="A tiling window manager based on binary space partitioning"
|
||||
maintainer="Ypnose <linuxienATlegtuxDOTorg>"
|
||||
license="BSD"
|
||||
homepage="https://github.com/baskerville/bspwm"
|
||||
provides="bspwm-${version}_${revision}"
|
||||
replaces="bspwm>=0"
|
||||
|
||||
do_fetch() {
|
||||
local url="git://github.com/baskerville/bspwm"
|
||||
msg_normal "Fetching source from $url ...\n"
|
||||
git clone ${url} ${pkgname}-${version}
|
||||
}
|
||||
|
||||
post_install() {
|
||||
vlicense LICENSE
|
||||
vinstall contrib/bash_completion 644 usr/share/bash-completion/completions bspc
|
||||
vinstall contrib/zsh_completion 644 usr/share/zsh/site-functions _bspc
|
||||
}
|
|
@ -1,19 +0,0 @@
|
|||
# Template file for 'libstrophe-git'
|
||||
pkgname=libstrophe-git
|
||||
version=20140804
|
||||
revision=1
|
||||
build_style=gnu-configure
|
||||
hostmakedepends="automake libtool pkg-config git"
|
||||
makedepends="expat-devel zlib-devel libressl-devel"
|
||||
short_desc="A minimal XMPP library written in C"
|
||||
maintainer="Juan RP <xtraeme@gmail.com>"
|
||||
license="GPL-3"
|
||||
homepage="http://strophe.im/libstrophe/"
|
||||
|
||||
do_fetch() {
|
||||
git clone git://github.com/strophe/libstrophe ${pkgname}-${version}
|
||||
}
|
||||
pre_configure() {
|
||||
touch NEWS README AUTHORS ChangeLog
|
||||
autoreconf -fi
|
||||
}
|
|
@ -1 +0,0 @@
|
|||
xbps-git
|
|
@ -1 +0,0 @@
|
|||
xbps-git
|
|
@ -1,101 +0,0 @@
|
|||
/* User configurable stuff. */
|
||||
|
||||
/*
|
||||
* Move this many pixels when moving or resizing with keyboard unless
|
||||
* the window has hints saying otherwise.
|
||||
*/
|
||||
#define MOVE_STEP 32
|
||||
|
||||
/*
|
||||
* Use this modifier combined with other keys to control wm from
|
||||
* keyboard. Default is Mod4, which on my keyboard is the Alt key but
|
||||
* is usually the Windows key on more normal keyboard layouts.
|
||||
*/
|
||||
#define MODKEY XCB_MOD_MASK_4
|
||||
|
||||
/* Extra modifier for resizing. Default is Shift. */
|
||||
#define SHIFTMOD XCB_MOD_MASK_SHIFT
|
||||
|
||||
/*
|
||||
* Modifier key to use with mouse buttons. Default Mod1, Meta on my
|
||||
* keyboard.
|
||||
*/
|
||||
#define MOUSEMODKEY XCB_MOD_MASK_1
|
||||
|
||||
/*
|
||||
* Start this program when pressing MODKEY + USERKEY_TERMINAL. Needs
|
||||
* to be in $PATH.
|
||||
*
|
||||
* Change to "xterm" if you're feeling conservative.
|
||||
*
|
||||
* Can be set from command line with "-t program".
|
||||
*/
|
||||
#define TERMINAL "urxvt"
|
||||
|
||||
/*
|
||||
* Do we allow windows to be iconified? Set to true if you want this
|
||||
* behaviour to be default. Can also be set by calling mcwm with -i.
|
||||
*/
|
||||
#define ALLOWICONS false
|
||||
|
||||
/*
|
||||
* Start these programs when pressing MOUSEMODKEY and mouse buttons on
|
||||
* root window.
|
||||
*/
|
||||
#define MOUSE1 ""
|
||||
#define MOUSE2 ""
|
||||
#define MOUSE3 "mcmenu"
|
||||
|
||||
/*
|
||||
* Default colour on border for focused windows. Can be set from
|
||||
* command line with "-f colour".
|
||||
*/
|
||||
#define FOCUSCOL "chocolate1"
|
||||
|
||||
/* Ditto for unfocused. Use "-u colour". */
|
||||
#define UNFOCUSCOL "grey40"
|
||||
|
||||
/* Ditto for fixed windows. Use "-x colour". */
|
||||
#define FIXEDCOL "grey90"
|
||||
|
||||
/* Default width of border window, in pixels. Used unless -b width. */
|
||||
#define BORDERWIDTH 1
|
||||
|
||||
/* Default snap margin in pixels. Used unless -s width. */
|
||||
#define SNAPMARGIN 0
|
||||
|
||||
/*
|
||||
* Keysym codes for window operations. Look in X11/keysymdefs.h for
|
||||
* actual symbols. Use XK_VoidSymbol to disable a function.
|
||||
*/
|
||||
#define USERKEY_FIX XK_F
|
||||
#define USERKEY_MOVE_LEFT XK_H
|
||||
#define USERKEY_MOVE_DOWN XK_J
|
||||
#define USERKEY_MOVE_UP XK_K
|
||||
#define USERKEY_MOVE_RIGHT XK_L
|
||||
#define USERKEY_MAXVERT XK_M
|
||||
#define USERKEY_RAISE XK_R
|
||||
#define USERKEY_TERMINAL XK_Return
|
||||
#define USERKEY_MAX XK_X
|
||||
#define USERKEY_CHANGE XK_Tab
|
||||
#define USERKEY_BACKCHANGE XK_VoidSymbol
|
||||
#define USERKEY_WS1 XK_1
|
||||
#define USERKEY_WS2 XK_2
|
||||
#define USERKEY_WS3 XK_3
|
||||
#define USERKEY_WS4 XK_4
|
||||
#define USERKEY_WS5 XK_5
|
||||
#define USERKEY_WS6 XK_6
|
||||
#define USERKEY_WS7 XK_7
|
||||
#define USERKEY_WS8 XK_8
|
||||
#define USERKEY_WS9 XK_9
|
||||
#define USERKEY_WS10 XK_0
|
||||
#define USERKEY_PREVWS XK_C
|
||||
#define USERKEY_NEXTWS XK_V
|
||||
#define USERKEY_TOPLEFT XK_Y
|
||||
#define USERKEY_TOPRIGHT XK_U
|
||||
#define USERKEY_BOTLEFT XK_B
|
||||
#define USERKEY_BOTRIGHT XK_N
|
||||
#define USERKEY_DELETE XK_End
|
||||
#define USERKEY_PREVSCREEN XK_comma
|
||||
#define USERKEY_NEXTSCREEN XK_period
|
||||
#define USERKEY_ICONIFY XK_I
|
|
@ -1,35 +0,0 @@
|
|||
# Template file for 'mcwm-git'
|
||||
pkgname=mcwm-git
|
||||
version=20140317
|
||||
revision=1
|
||||
build_style=gnu-makefile
|
||||
hostmakedepends="git"
|
||||
makedepends="libxcb-devel xcb-proto xcb-util-devel xcb-util-keysyms-devel xcb-util-wm-devel"
|
||||
provides="mcwm-${version}_${revision}"
|
||||
replaces="mcwm>=0"
|
||||
short_desc="A minimalist stacking X window manager based on XCB"
|
||||
maintainer="Ypnose <linuxienATlegtuxDOTorg>"
|
||||
license="ISC"
|
||||
homepage="http://hack.org/mc/projects/mcwm/"
|
||||
|
||||
do_fetch() {
|
||||
local url="git://hack.org/mcwm"
|
||||
msg_normal "Fetching source from $url ...\n"
|
||||
git clone ${url} ${pkgname}-${version}
|
||||
}
|
||||
|
||||
do_build() {
|
||||
cp ${FILESDIR}/config.h config.h
|
||||
sed -i 's/man\/man1/share\/man\/man1/g' Makefile
|
||||
make CC=$CC ${makejobs}
|
||||
}
|
||||
|
||||
do_install() {
|
||||
vmkdir usr/bin
|
||||
vmkdir usr/share/man/man1
|
||||
make PREFIX=${DESTDIR}/usr install
|
||||
vinstall scripts/9icon 755 usr/bin
|
||||
vinstall scripts/mcicon 755 usr/bin
|
||||
vinstall scripts/mcmenu 755 usr/bin
|
||||
vinstall LICENSE 644 usr/share/licenses/${pkgname}
|
||||
}
|
|
@ -1,21 +0,0 @@
|
|||
# Template file for 'radare2-git'
|
||||
#
|
||||
# Do not create a -devel pkg; it's a full pkg explicitly.
|
||||
pkgname=radare2-git
|
||||
version=20140930
|
||||
revision=2
|
||||
build_style=gnu-configure
|
||||
hostmakedepends="git"
|
||||
short_desc="Advanced command line debugger and hexadecimal editor (git snapshot)"
|
||||
maintainer="pancake <pancake@nopcode.org>"
|
||||
license="LGPL-3"
|
||||
homepage="http://radare.org"
|
||||
|
||||
provides="radare2-${version}_${revision}"
|
||||
replaces="radare2>=0 radare2-devel>=0"
|
||||
|
||||
do_fetch() {
|
||||
local url="git://github.com/radare/radare2"
|
||||
msg_normal "Fetching source from $url ...\n"
|
||||
git clone ${url} ${pkgname}-${version}
|
||||
}
|
|
@ -1,5 +0,0 @@
|
|||
/* See LICENSE file for copyright and license details. */
|
||||
|
||||
static char *const rcinitcmd[] = { "/bin/rc.init", NULL };
|
||||
static char *const rcrebootcmd[] = { "/bin/rc.shutdown", "reboot", NULL };
|
||||
static char *const rcpoweroffcmd[] = { "/bin/rc.shutdown", "poweroff", NULL };
|
|
@ -1,31 +0,0 @@
|
|||
# Template file for 'sinit-git'
|
||||
pkgname=sinit-git
|
||||
version=20140820
|
||||
revision=1
|
||||
build_style=gnu-makefile
|
||||
hostmakedepends="git"
|
||||
provides="sinit-${version}_${revision}"
|
||||
replaces="sinit>=0"
|
||||
short_desc="A simple init, initially based on Rich Felker’s minimal init"
|
||||
maintainer="Ypnose <linuxienATlegtuxDOTorg>"
|
||||
license="MIT"
|
||||
homepage="http://tools.suckless.org/sinit/"
|
||||
|
||||
do_fetch() {
|
||||
local url="git://git.suckless.org/sinit"
|
||||
msg_normal "Fetching source from $url ...\n"
|
||||
git clone ${url} ${pkgname}-${version}
|
||||
}
|
||||
|
||||
pre_build() {
|
||||
LD=$CC
|
||||
cp ${FILESDIR}/config.h config.h
|
||||
sed -i 's|^CPPFLAGS =|CPPFLAGS +=|g' config.mk
|
||||
sed -i 's|^CFLAGS =|CFLAGS +=|g' config.mk
|
||||
sed -i 's|^LDFLAGS =|LDFLAGS +=|g' config.mk
|
||||
}
|
||||
|
||||
post_install() {
|
||||
vinstall LICENSE 644 usr/share/licenses/sinit
|
||||
vinstall README 644 usr/share/doc/sinit
|
||||
}
|
|
@ -1,5 +0,0 @@
|
|||
case "${ACTION}" in
|
||||
post)
|
||||
tic -s st.info
|
||||
;;
|
||||
esac
|
|
@ -1,8 +0,0 @@
|
|||
case "${ACTION}" in
|
||||
post)
|
||||
rm /usr/share/terminfo/s/st
|
||||
rm /usr/share/terminfo/s/st-meta
|
||||
rm /usr/share/terminfo/s/st-meta-256color
|
||||
rm /usr/share/terminfo/s/st-256color
|
||||
;;
|
||||
esac
|
|
@ -1,35 +0,0 @@
|
|||
# Template file for 'st-git'
|
||||
pkgname=st-git
|
||||
version=20140920
|
||||
revision=1
|
||||
build_style=gnu-makefile
|
||||
provides="st-${version}_${revision}"
|
||||
replaces="st>=0"
|
||||
hostmakedepends="pkg-config git"
|
||||
makedepends="fontconfig-devel libX11-devel libXft-devel terminus-font"
|
||||
depends="ncurses"
|
||||
short_desc="Simple terminal implementation for X"
|
||||
maintainer="Ypnose <linuxienATlegtuxDOTorg>"
|
||||
license="MIT"
|
||||
homepage="http://st.suckless.org"
|
||||
|
||||
do_fetch() {
|
||||
local url="git://git.suckless.org/st"
|
||||
msg_normal "Fetching source from $url ...\n"
|
||||
git clone ${url} ${pkgname}-${version}
|
||||
}
|
||||
|
||||
pre_build() {
|
||||
sed -i 's|Liberation Mono|Terminus|g' config.def.h
|
||||
sed -i 's|-I/usr/include||g' config.mk
|
||||
sed -i 's|-L/usr/lib||g' config.mk
|
||||
# Remove a warning
|
||||
sed -i 's|-D_BSD_SOURCE|-D_DEFAULT_SOURCE|g' config.mk
|
||||
# We will use tic after install. See INSTALL.
|
||||
sed -i 's|@tic -s st.info||g' Makefile
|
||||
}
|
||||
|
||||
post_install() {
|
||||
vinstall README 644 usr/share/doc/st
|
||||
vinstall LICENSE 644 usr/share/licenses/st
|
||||
}
|
|
@ -1,23 +0,0 @@
|
|||
# Template file for 'sxhkd-git'
|
||||
pkgname=sxhkd-git
|
||||
version=20140820
|
||||
revision=1
|
||||
build_style=gnu-makefile
|
||||
hostmakedepends="git"
|
||||
makedepends="libxcb-devel xcb-util-devel xcb-util-keysyms-devel"
|
||||
short_desc="Simple X HotKey Daemon"
|
||||
maintainer="Ypnose <linuxienATlegtuxDOTorg>"
|
||||
license="BSD"
|
||||
homepage="https://github.com/baskerville/sxhkd"
|
||||
provides="sxhkd-${version}_${revision}"
|
||||
replaces="sxhkd>=0"
|
||||
|
||||
do_fetch() {
|
||||
local url="git://github.com/baskerville/sxhkd"
|
||||
msg_normal "Fetching source from $url ...\n"
|
||||
git clone ${url} ${pkgname}-${version}
|
||||
}
|
||||
|
||||
post_install() {
|
||||
vinstall LICENSE 644 usr/share/licenses/$pkgname
|
||||
}
|
|
@ -1,60 +0,0 @@
|
|||
/* See LICENSE file for copyright and license details. */
|
||||
|
||||
/* appearance */
|
||||
static const char font[] = "-*-*-medium-*-*-*-14-*-*-*-*-*-*-*";
|
||||
static const char* normbgcolor = "#222222";
|
||||
static const char* normfgcolor = "#cccccc";
|
||||
static const char* selbgcolor = "#555555";
|
||||
static const char* selfgcolor = "#ffffff";
|
||||
static const char* urgbgcolor = "#111111";
|
||||
static const char* urgfgcolor = "#cc0000";
|
||||
static const char before[] = "<";
|
||||
static const char after[] = ">";
|
||||
static const int tabwidth = 200;
|
||||
static const Bool foreground = True;
|
||||
|
||||
/*
|
||||
* Where to place a new tab when it is opened. When npisrelative is True,
|
||||
* then the current position is changed + newposition. If npisrelative
|
||||
* is False, then newposition is an absolute position.
|
||||
*/
|
||||
static int newposition = 0;
|
||||
static Bool npisrelative = False;
|
||||
|
||||
#define SETPROP(p) { \
|
||||
.v = (char *[]){ "/bin/sh", "-c", \
|
||||
"prop=\"`xwininfo -children -id $1 | grep '^ 0x' | sed -e's@^ *\\(0x[0-9a-f]*\\) \"\\([^\"]*\\)\".*@\\1 \\2@' | xargs -0 printf %b | dmenu -l 10`\" &&" \
|
||||
"xprop -id $1 -f $0 8s -set $0 \"$prop\"", \
|
||||
p, winid, NULL \
|
||||
} \
|
||||
}
|
||||
|
||||
#define MODKEY ControlMask
|
||||
static Key keys[] = { \
|
||||
/* modifier key function argument */
|
||||
{ MODKEY|ShiftMask, XK_Return, focusonce, { 0 } },
|
||||
{ MODKEY|ShiftMask, XK_Return, spawn, { 0 } },
|
||||
{ MODKEY, XK_t, spawn, SETPROP("_TABBED_SELECT_TAB") },
|
||||
|
||||
{ MODKEY|ShiftMask, XK_l, rotate, { .i = +1 } },
|
||||
{ MODKEY|ShiftMask, XK_h, rotate, { .i = -1 } },
|
||||
{ MODKEY|ShiftMask, XK_j, movetab, { .i = -1 } },
|
||||
{ MODKEY|ShiftMask, XK_k, movetab, { .i = +1 } },
|
||||
{ MODKEY, XK_Tab, rotate, { .i = 0 } },
|
||||
|
||||
{ MODKEY, XK_1, move, { .i = 0 } },
|
||||
{ MODKEY, XK_2, move, { .i = 1 } },
|
||||
{ MODKEY, XK_3, move, { .i = 2 } },
|
||||
{ MODKEY, XK_4, move, { .i = 3 } },
|
||||
{ MODKEY, XK_5, move, { .i = 4 } },
|
||||
{ MODKEY, XK_6, move, { .i = 5 } },
|
||||
{ MODKEY, XK_7, move, { .i = 6 } },
|
||||
{ MODKEY, XK_8, move, { .i = 7 } },
|
||||
{ MODKEY, XK_9, move, { .i = 8 } },
|
||||
{ MODKEY, XK_0, move, { .i = 9 } },
|
||||
|
||||
{ MODKEY, XK_q, killclient, { 0 } },
|
||||
|
||||
{ 0, XK_F11, fullscreen, { 0 } },
|
||||
};
|
||||
|
|
@ -1,33 +0,0 @@
|
|||
# Template file for 'tabbed-git'
|
||||
pkgname=tabbed-git
|
||||
version=20140920
|
||||
revision=1
|
||||
build_style=gnu-makefile
|
||||
make_build_args="INCS=-I. LIBS=-lX11"
|
||||
hostmakedepends="git"
|
||||
makedepends="libX11-devel"
|
||||
provides="tabbed-${version}_${revision}"
|
||||
replaces="tabbed>=0"
|
||||
short_desc="Simple generic tabbed fronted to xembed aware applications"
|
||||
maintainer="Ypnose <linuxienATlegtuxDOTorg>"
|
||||
license="MIT"
|
||||
homepage="http://tools.suckless.org/tabbed/"
|
||||
|
||||
do_fetch() {
|
||||
local url="git://git.suckless.org/tabbed"
|
||||
msg_normal "Fetching source from $url ...\n"
|
||||
git clone ${url} ${pkgname}-${version}
|
||||
}
|
||||
|
||||
pre_build() {
|
||||
cp ${FILESDIR}/config.h config.h
|
||||
sed -i 's/CPPFLAGS =/CPPFLAGS +=/g' config.mk
|
||||
sed -i 's/CFLAGS =/CFLAGS +=/g' config.mk
|
||||
sed -i 's/LDFLAGS =/LDFLAGS +=/g' config.mk
|
||||
# Remove BSD_SOURCE warning
|
||||
sed -i 's/-D_BSD_SOURCE/-D_DEFAULT_SOURCE/g' config.mk
|
||||
}
|
||||
|
||||
post_install() {
|
||||
vinstall LICENSE 644 usr/share/licenses/tabbed
|
||||
}
|
|
@ -1,6 +0,0 @@
|
|||
case "${ACTION}" in
|
||||
post)
|
||||
chown root:xbuilder usr/sbin/xbps-uchroot
|
||||
chmod 4750 usr/sbin/xbps-uchroot
|
||||
;;
|
||||
esac
|
|
@ -1,62 +0,0 @@
|
|||
# Template file for 'xbps-git'
|
||||
pkgname=xbps-git
|
||||
version=20140930
|
||||
revision=1
|
||||
short_desc="The XBPS package system (development branch)"
|
||||
maintainer="Juan RP <xtraeme@gmail.com>"
|
||||
homepage="http://www.voidlinux.eu/xbps"
|
||||
license="Simplified BSD"
|
||||
|
||||
hostmakedepends="pkg-config git"
|
||||
makedepends="zlib-devel libressl-devel libarchive-devel>=3.1.2_7 atf-devel"
|
||||
|
||||
depends="xbps-triggers>=0.75 libxbps-git-${version}_${revision}"
|
||||
provides="xbps-${version}_${revision}"
|
||||
replaces="xbps>=0"
|
||||
conf_files="/etc/xbps/xbps.conf"
|
||||
|
||||
do_fetch() {
|
||||
local url="git://github.com/voidlinux/xbps"
|
||||
msg_normal "Fetching source from $url ...\n"
|
||||
git clone ${url} ${pkgname}-${version}
|
||||
}
|
||||
do_configure() {
|
||||
HAVE_VASPRINTF=1 ./configure --prefix=/usr --sysconfdir=/etc --enable-debug --enable-tests
|
||||
}
|
||||
do_build() {
|
||||
make ${makejobs}
|
||||
}
|
||||
do_install() {
|
||||
make DESTDIR=$DESTDIR install
|
||||
}
|
||||
|
||||
libxbps-git_package() {
|
||||
short_desc+=" - runtime library"
|
||||
provides="libxbps-${version}_${revision}"
|
||||
replaces="libxbps>=0"
|
||||
pkg_install() {
|
||||
vmove "usr/lib/*.so.*"
|
||||
}
|
||||
}
|
||||
libxbps-devel-git_package() {
|
||||
short_desc+=" - runtime library (development files)"
|
||||
depends="zlib-devel libarchive-devel libxbps-git>=${version}_${revision}"
|
||||
provides="libxbps-devel-${version}_${revision}"
|
||||
replaces="libxbps-devel>=0"
|
||||
pkg_install() {
|
||||
vmove usr/include
|
||||
vmove "usr/lib/*.a"
|
||||
vmove "usr/lib/*.so"
|
||||
vmove usr/lib/pkgconfig
|
||||
}
|
||||
}
|
||||
|
||||
xbps-tests-git_package() {
|
||||
short_desc+=" - Kyua testsuite"
|
||||
depends="libxbps-git>=${version}_${revision}"
|
||||
provides="xbps-tests-${version}_${revision}"
|
||||
replaces="xbps-tests>=0"
|
||||
pkg_install() {
|
||||
vmove usr/tests
|
||||
}
|
||||
}
|
|
@ -1,6 +0,0 @@
|
|||
case "${ACTION}" in
|
||||
post)
|
||||
chown root:xbuilder usr/sbin/xbps-uchroot.static
|
||||
chmod 4750 usr/sbin/xbps-uchroot.static
|
||||
;;
|
||||
esac
|
|
@ -1,40 +0,0 @@
|
|||
# Template file for 'xbps-static-git'
|
||||
#
|
||||
# NOTE: keep this package synchronized with "srcpkgs/xbps-git".
|
||||
pkgname=xbps-static-git
|
||||
version=20140915
|
||||
revision=1
|
||||
short_desc="The XBPS package system (development branch) - static bins"
|
||||
maintainer="Juan RP <xtraeme@gmail.com>"
|
||||
homepage="http://www.voidlinux.eu/xbps"
|
||||
license="Simplified BSD"
|
||||
hostmakedepends="which pkg-config git"
|
||||
makedepends="zlib-devel libressl-devel libarchive-devel>=3.1.2"
|
||||
|
||||
provides="xbps-static-${version}_${revision}"
|
||||
replaces="xbps-static>=0"
|
||||
depends="xbps-triggers"
|
||||
|
||||
only_for_archs="i686-musl x86_64-musl armv6l-musl armv7l-musl"
|
||||
|
||||
case "$XBPS_TARGET_MACHINE" in
|
||||
i686-musl) CFLAGS+=" -fno-stack-protector";;
|
||||
esac
|
||||
|
||||
do_fetch() {
|
||||
local url="git://github.com/voidlinux/xbps"
|
||||
msg_normal "Fetching source from $url ...\n"
|
||||
git clone ${url} ${pkgname}-${version}
|
||||
}
|
||||
|
||||
do_configure() {
|
||||
HAVE_VASPRINTF=1 ./configure --prefix=/usr --sysconfdir=/etc --enable-debug --enable-static
|
||||
}
|
||||
do_build() {
|
||||
make ${makejobs}
|
||||
}
|
||||
do_install() {
|
||||
make DESTDIR=${wrksrc}/static-install install
|
||||
vmkdir usr/sbin
|
||||
mv ${wrksrc}/static-install/usr/sbin/*.static ${DESTDIR}/usr/sbin
|
||||
}
|
|
@ -1 +0,0 @@
|
|||
xbps-git
|
Loading…
Reference in New Issue