Skip to content

Commit 9326c27

Browse files
committed
pdpmake: new package at 2.0.3
1 parent 8d2010b commit 9326c27

5 files changed

Lines changed: 33 additions & 3 deletions

File tree

.gitmodules

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -267,6 +267,9 @@
267267
path = pkg/pciutils/src
268268
url = https://git.kernel.org/pub/scm/utils/pciutils/pciutils.git
269269
ignore = all
270+
[submodule "pkg/pdpmake/src"]
271+
path = pkg/pdpmake/src
272+
url = https://github.com/rmyorston/pdpmake
270273
[submodule "pkg/pigz/src"]
271274
path = pkg/pigz/src
272275
url = https://github.com/madler/pigz

pkg/gen.lua

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ subgen 'cmark'
1818
subgen 'cproc'
1919
subgen 'curl'
2020
subgen 'dav1d'
21-
subgen 'dosfstools'
2221
subgen 'dmenu'
2322
subgen 'dnssec-rr'
23+
subgen 'dosfstools'
2424
subgen 'e2fsprogs'
2525
subgen 'efibootmgr'
2626
subgen 'efivar'
@@ -80,8 +80,8 @@ subgen 'mtdev'
8080
subgen 'mupdf'
8181
subgen 'musl'
8282
subgen 'nasm'
83-
subgen 'netbsd-curses'
8483
subgen 'ncompress'
84+
subgen 'netbsd-curses'
8585
subgen 'netsurf'
8686
subgen 'nginx'
8787
subgen 'nsd'
@@ -93,6 +93,7 @@ subgen 'opus'
9393
subgen 'pax'
9494
subgen 'pciutils'
9595
subgen 'pcre'
96+
subgen 'pdpmake'
9697
subgen 'perp'
9798
subgen 'pigz'
9899
subgen 'pixman'
@@ -124,11 +125,11 @@ subgen 'tinyalsa'
124125
subgen 'tinyemu'
125126
subgen 'transmission'
126127
subgen 'tz'
128+
subgen 'u-boot'
127129
subgen 'ubase'
128130
subgen 'unbound'
129131
subgen 'unzip'
130132
subgen 'usbids'
131-
subgen 'u-boot'
132133
subgen 'utf8proc'
133134
subgen 'util-linux'
134135
subgen 'velox'

pkg/pdpmake/gen.lua

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
cflags{
2+
'-std=c99',
3+
'-pedantic',
4+
'-Wall',
5+
'-Wextra',
6+
}
7+
8+
exe('pdpmake', {
9+
'check.c',
10+
'input.c',
11+
'macro.c',
12+
'main.c',
13+
'make.c',
14+
'modtime.c',
15+
'rules.c',
16+
'target.c',
17+
'utils.c',
18+
})
19+
20+
file('bin/pdpmake', '755', '$outdir/pdpmake')
21+
22+
man{'pdpmake.1'}
23+
24+
fetch 'git'

pkg/pdpmake/src

Submodule src added at 91d583d

pkg/pdpmake/ver

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
2.0.3 r0

0 commit comments

Comments
 (0)