Skip to content

Commit 2df13b5

Browse files
committed
Add cygport file
1 parent 7251d5e commit 2df13b5

File tree

2 files changed

+25
-0
lines changed

2 files changed

+25
-0
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
*.o
22
*.exe
3+
extras/shutdown-*
4+
extras/*.bz2

extras/shutdown.cygport

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
NAME="shutdown"
2+
VERSION="1.10"
3+
RELEASE=1
4+
CATEGORY="Admin"
5+
SUMMARY="Shutdown, reboot, hibernate or suspend the machine"
6+
DESCRIPTION="Shutdown, reboot, hibernate or suspend the machine"
7+
HOMEPAGE="http://cygwin.com/"
8+
9+
GIT_URI="https://github.com/cygwin/shutdown"
10+
GIT_TAG="v1.10.0"
11+
inherit git
12+
13+
src_compile() {
14+
cd ${B}
15+
make -f ${S}/Makefile SRCDIR=${S}
16+
}
17+
18+
src_install() {
19+
cd ${B}
20+
make install -f ${S}/Makefile SRCDIR=${S} DESTDIR=${D}
21+
}
22+
23+
# vim: ts=4:sw=4:noet:ft=sh

0 commit comments

Comments
 (0)