Skip to content

Commit faff3fe

Browse files
authored
Update package.py
1 parent 8597990 commit faff3fe

File tree

1 file changed

+7
-12
lines changed

1 file changed

+7
-12
lines changed

package.py

Lines changed: 7 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -24,30 +24,25 @@
2424

2525

2626
class Rustbca(Package):
27-
"""FIXME: Put a proper description of your package here."""
27+
"""RustBCA: A Binary Collision Approximation code and libraries for simulating ion-material interactions"""
2828

29-
# FIXME: Add a proper url for your package's homepage here.
3029
homepage = "https://www.github.com/lcpp-org/RustBCA/wiki"
3130
url = "https://github.com/lcpp-org/RustBCA/archive/refs/tags/v1.0.0.tar.gz"
3231
git = "https://www.github.com/lcpp-org/RustBCA.git"
3332

34-
# FIXME: Add a list of GitHub accounts to
35-
# notify when the package is updated.
36-
# maintainers = ['github_user1', 'github_user2']
33+
# maintainers = ['drobnyjt']
3734

3835
version('dev', branch='dev')
39-
version('1.0.0', sha256='99dcac7c7a78e6cd17da63a0dcbb3c36bca523ffafbb0425128b0c971b1a6829')
36+
version('master', branch='master')
4037
depends_on('rust')
4138

42-
# FIXME: Add dependencies if required.
43-
# depends_on('foo')
44-
4539
def install(self, spec, prefix):
4640
cargo = which('cargo')
47-
cargo('build', '--release', '--lib', '--target-dir', prefix)
48-
41+
cargo('build', '--release', '--lib')
42+
4943
mkdirp(prefix.include)
5044
install('RustBCA.h', prefix.include)
51-
45+
5246
mkdirp(prefix.lib)
5347
install('target/release/liblibRustBCA.so', prefix.lib)
48+

0 commit comments

Comments
 (0)