blob: c58dec8ada80e7b4f2e12cdcacf15dcd27cd3dbe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/bin/sh
MAKEDEPS="make"
DEPS=""
DESC="The queue.h header from glibc"
ADDITIONAL="
https://gitweb.gentoo.org/repo/gentoo.git/plain/sys-libs/queue-standalone/files/queue.h
"
package () {
install -d $PKG_DEST/usr/include/sys/
install -m644 queue.h $PKG_DEST/usr/include/sys/
}
|