Build debain package using makd

- Add makd submodule

* makd ()...v2.0.1(d735c1d) (1 commits)
  > Fix calls to `find`
This commit is contained in:
Stefan Koch 2017-10-16 14:46:00 +02:00
parent ab45e03701
commit d1974d95fb
4 changed files with 40 additions and 0 deletions

3
.gitmodules vendored
View File

@ -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

1
makd Submodule

@ -0,0 +1 @@
Subproject commit d735c1df67399693f699f8315418173a55de5313

View File

@ -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

31
pkg/dfmt.pkg Normal file
View File

@ -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 :