Skip to content

Commit

Permalink
Scripts corrected for tarball and RPM generation
Browse files Browse the repository at this point in the history
Former-commit-id: 78b8027
  • Loading branch information
Cristina Yenyxe Gonzalez Garcia committed Feb 14, 2013
1 parent 9372543 commit a48fbf4
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions SConstruct
Original file line number Diff line number Diff line change
Expand Up @@ -49,14 +49,14 @@ t = SConscript("test/SConscript", exports = ['env', 'debug', 'commons_path', 'bi
# For the packaging manager: Don't forget to point the XXX_INCLUDE_PATH and XXX_LIBRARY_PATH
# variables to the application libraries folder!!
tb = env.Package(NAME = 'hpg-variant',
VERSION = '0.2.1',
VERSION = '0.3',
PACKAGEVERSION = 0,
PACKAGETYPE = 'src_targz',
source = env.FindSourceFiles() + env.FindHeaderFiles(progs) +
[ '#libs/libargtable2.a', '#libs/libcprops.a',
Glob('#include/*.h'), Glob('#include/cprops/*.h'),
'#buildaux.py', '#buildvars.py', '#libs/common-libs/buildvars.py', '#libs/bioinfo-libs/buildvars.py',
'#deb/SConscript', '#rpm/SConscript',
'#deb/SConscript', '#rpm/SConscript', '#rpm/hpg-variant.spec',
'#COPYING', '#INSTALL' ] )
Alias('tarball', tb)

Expand Down
2 changes: 1 addition & 1 deletion libs/bioinfo-libs
Submodule bioinfo-libs updated from 00e052 to dead2c
2 changes: 1 addition & 1 deletion rpm/hpg-variant.spec
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
%define name hpg-variant
%define version 0.2.1
%define version 0.3
Name: %{name}
Version: %{version}
Release: 1%{?dist}
Expand Down
10 changes: 5 additions & 5 deletions test/SConscript
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ check_fam = penv.Program('checks_family.test',
source = ['test_checks_family.c',
Glob('#src/*.o'), Glob('#src/gwas/assoc/*.o'), Glob('#src/gwas/tdt/*.o'),
"%s/libcommon.a" % commons_path,
"%s/bioformats/libbioformats.a" % bioinfo_path,
"%s/libbioinfo.a" % bioinfo_path,
"%s/libhpgmath.a" % math_path
]
)
Expand All @@ -16,7 +16,7 @@ effect = penv.Program('effect.test',
source = ['test_effect_runner.c',
Glob('#src/*.o'), '#src/effect/auxiliary_files_writer.o', '#src/effect/effect_options_parsing.o', '#src/effect/effect_runner.o',
"%s/libcommon.a" % commons_path,
"%s/bioformats/libbioformats.a" % bioinfo_path
"%s/libbioinfo.a" % bioinfo_path
]
)

Expand All @@ -25,15 +25,15 @@ epi_data = penv.Program('epistasis_dataset.test',
# Glob('#src/*.o'), '#src/epistasis/dataset.o', '#src/epistasis/dataset_creator.o',
Glob('#src/*.o'), '#src/epistasis/dataset.o',
"%s/libcommon.a" % commons_path,
"%s/bioformats/libbioformats.a" % bioinfo_path
"%s/libbioinfo.a" % bioinfo_path
]
)

merge = penv.Program('merge.test',
source = ['test_merge.c',
Glob('#src/*.o'), Glob('#src/vcf-tools/merge/*.o'),
"%s/libcommon.a" % commons_path,
"%s/bioformats/libbioformats.a" % bioinfo_path,
"%s/libbioinfo.a" % bioinfo_path,
"%s/libhpgmath.a" % math_path
]
)
Expand All @@ -42,7 +42,7 @@ tdt = penv.Program('tdt.test',
source = ['test_tdt_runner.c',
Glob('#src/*.o'), Glob('#src/gwas/tdt/*.o'),
"%s/libcommon.a" % commons_path,
"%s/bioformats/libbioformats.a" % bioinfo_path,
"%s/libbioinfo.a" % bioinfo_path,
"%s/libhpgmath.a" % math_path
]
)

0 comments on commit a48fbf4

Please sign in to comment.