Build debain package using makd
- Add makd submodule * makd ()...v2.0.1(d735c1d) (1 commits) > Fix calls to `find`
This commit is contained in:
parent
ab45e03701
commit
d1974d95fb
|
@ -1,3 +1,6 @@
|
|||
[submodule "libdparse"]
|
||||
path = libdparse
|
||||
url = https://github.com/dlang-community/libdparse.git
|
||||
[submodule "makd"]
|
||||
path = makd
|
||||
url = https://github.com/sociomantic-tsunami/makd
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
Subproject commit d735c1df67399693f699f8315418173a55de5313
|
5
makefile
5
makefile
|
@ -38,3 +38,8 @@ bin/dfmt: views/VERSION $(SRC)
|
|||
debug: views/VERSION $(SRC)
|
||||
$(DC) $(DMD_DEBUG_FLAGS) $(filter %.d,$^) -ofbin/dfmt
|
||||
|
||||
pkg: dmd
|
||||
$(MAKE) -f makd/Makd.mak pkg
|
||||
|
||||
clean:
|
||||
$(RM) bin/dfmt
|
||||
|
|
|
@ -0,0 +1,31 @@
|
|||
# dfmt packaging configuration
|
||||
# ============================
|
||||
|
||||
dfmt_bindir='bin'
|
||||
|
||||
#-------------------------------------------------------------------------------
|
||||
# Define the keyword arguments to pass to fpm (via the OPTS dict)
|
||||
#-------------------------------------------------------------------------------
|
||||
|
||||
OPTS.update(
|
||||
name = "dfmt",
|
||||
url = 'https://github.com/dlang-community/dfmt',
|
||||
maintainer = 'Stefan Koch <stefan.koch@sociomantic.com>',
|
||||
vendor = 'Sociomantic Labs GmbH',
|
||||
provides = "dfmt",
|
||||
description = '''\
|
||||
D source code formatter
|
||||
''',
|
||||
depends = FUN.autodeps('dfmt', path=dfmt_bindir),
|
||||
)
|
||||
|
||||
#-------------------------------------------------------------------------------
|
||||
# Define the positional arguments to pass to fpm (via the ARGS list)
|
||||
#-------------------------------------------------------------------------------
|
||||
|
||||
ARGS.extend(FUN.mapfiles(dfmt_bindir, '/usr/bin', 'dfmt'))
|
||||
ARGS.extend([
|
||||
'bash-completion/completion/dfmt=/usr/share/bash-completion/completion/dfmt'
|
||||
])
|
||||
|
||||
# vim: set ft=python tw=80 :
|
Loading…
Reference in New Issue