blob: 2b2866ef0d089aa568ddb335d5f0910f7e891500 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# This file is part of the OpenADK project. OpenADK is copyrighted
# material, please see the LICENCE file in the top-level directory.
include ${TOPDIR}/rules.mk
PKG_NAME:= gpm
PKG_VERSION:= 1.20.5
PKG_RELEASE:= 1
PKG_MD5SUM:= 3915bdd6bf947ef867752a30b4be2387
PKG_DESCR:= console mouse support
PKG_SECTION:= text
PKG_URL:= http://unix.schottelius.org/gpm
PKG_SITES:= http://unix.schottelius.org/gpm/archives/
include ${TOPDIR}/mk/package.mk
$(eval $(call PKG_template,GPM,${PKG_NAME},${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
TCFLAGS+= -I${WRKSRC}/src/headers
post-install:
${INSTALL_DIR} ${IDIR_GPM}/usr/sbin ${IDIR_GPM}/usr/lib
${INSTALL_BIN} ${WRKINST}/usr/sbin/gpm ${IDIR_GPM}/usr/sbin/
${CP} ${WRKINST}/usr/lib/libgpm.so.* ${IDIR_GPM}/usr/lib/
include ${TOPDIR}/mk/pkg-bottom.mk
|